Fibonacci Numbers
Fibonacci numbers are defined by the following recurrance:
F0 = 0,
F1 = 1,
Fi = Fi−1+ Fi−2 for i≥2.
Each fibonacci number is the sum of the two previous ones, yielding the sequence
0,1,1,2,3,5,8,13,21,34,55,…
Fibonacci numbers are related to the golden ratio ϕ and to its conjugate ˆϕ which are the two roots of the equation:
x2 = x + 1
and are given by the following:
ϕ=1+√52
ˆϕ=1−√52
Where we have:
Fi=ϕi−ˆϕi√5
Fibonacci numbers grow exponentially.