From charlesreid1

No edit summary
No edit summary
Line 1: Line 1:
{{ConstantFlag}}
{{ConstantsFlag}}


Fibonacci numbers are possibly the most famous integer sequence. The nth Fibonacci number is computed from the n-1th and n-2th Fibonacci numbers as follows:
Fibonacci numbers are possibly the most famous integer sequence. The nth Fibonacci number is computed from the n-1th and n-2th Fibonacci numbers as follows:

Revision as of 21:00, 16 July 2017




Fibonacci numbers are possibly the most famous integer sequence. The nth Fibonacci number is computed from the n-1th and n-2th Fibonacci numbers as follows:

$ F(n) = F(n-1) + F(n-2) $

where the two starting numbers are $ F_0 = 1 $ and $ F_1 = 1 $.