Jump to content

Fibonacci sequence: Difference between revisions

→‎{{header|TI-83 BASIC}}: Add the natural way
m (→‎{{header|PL/SQL}}: Added error check for non-integer input)
(→‎{{header|TI-83 BASIC}}: Add the natural way)
Line 11,296:
 
=={{header|TI-83 BASIC}}==
Sequence table:
<lang ti83b>[Y=]
nMin=0
u(n)=u(n-1)+u(n-2)
u(nMin)={1,0}
[TABLE]
n u(n)
------- -------
0 0
1 1
2 1
3 2
4 3
5 5
6 8
7 13
8 21
9 34
10 55
11 89
12 144 </lang>
 
Iterative:
<lang ti83b>{0,1
1,392

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.