Fibonacci Sequence Numbers List


The Fibonacci sequence

Leonardo Fibonacci was an Italian mathematician who founded for the first time the homonym sequence. The Fibonacci numbers were used during the Renaissance period and are considered correlate to the golden ratio.

Frequently asked questions

  1. What is the Fibonacci sequence formula?

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

    The formula is easy and can be solved using recursion.

  2. Which are the first 7 Fibonacci numbers?

    The first are: 0, 1, 1, 2, 3, 5, 8.

  3. How many numbers are on this list?

    After some iterations, the Fibonacci numbers are pretty big, so we store the first 500 numbers.