From charlesreid1

Revision as of 20:58, 16 July 2017 by Admin (talk | contribs) (Created page with "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: <math> F(n) = F(n...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 $.