Fibonacci Numbers

Fibonacci numbers are defined by the following recurrance:

F0 = 0,
F1 = 1,
Fi = Fi1+ Fi2 for i2.

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
ˆϕ=152

Where we have:

Fi=ϕiˆϕi5

Fibonacci numbers grow exponentially.

  • fibonacci.txt
  • Last modified: 2019/03/31 14:49
  • (external edit)