+0  
 
0
630
2
avatar
tell me fibonacci
 Jan 30, 2014
 #1
avatar+6251 
0
the Fibonacci sequence is recursively defined as follows

f(0)=1
f(1)=1
f(n)=f(n-2)+f(n-1) for n>=2

so you end up with

1 1 2 3 5 8 13 21 etc.
 Jan 30, 2014
 #2
avatar+118654 
0
Religous Education:

tell me fibonacci



Thanks Rom,
-----------------------------------------------------------------------

That did not sound very polite Religious Education.
I might have made you say please first
 Jan 31, 2014

1 Online Users