Fibonacci Sequence Table

A complete reference table for the Fibonacci sequence, showing each term, its value, and its ratio to the previous term. The sequence begins with 0 and 1, and each subsequent number is the sum of the two preceding ones — a pattern that appears throughout mathematics, nature, and art.

Fibonacci Calculator

Find the nth number in the Fibonacci sequence (F₀ = 0, F₁ = 1).

F(10)55

What is the Fibonacci Sequence?

The Fibonacci sequence is defined by the recurrence relation:

  • F(0) = 0
  • F(1) = 1
  • F(n) = F(n−1) + F(n−2) for n ≥ 2

As the sequence progresses, the ratio between consecutive terms converges to the golden ratio φ ≈ 1.61803398875, one of the most remarkable constants in mathematics.

Fibonacci Sequence (F(0) to F(50))

The table below shows the term index n, the Fibonacci value F(n), and the ratio F(n)/F(n−1) converging toward the golden ratio φ.

nF(n)F(n) / F(n−1)
00
11
211.000000
322.000000
431.500000
551.666667
681.600000
7131.625000
8211.615385
9341.619048
10551.617647
11891.618182
121441.617978
132331.618056
143771.618026
156101.618037
169871.618033
171,5971.618034
182,5841.618034
194,1811.618034
206,7651.618034
2110,9461.618034
2217,7111.618034
2328,6571.618034
2446,3681.618034
2575,0251.618034
26121,3931.618034
27196,4181.618034
28317,8111.618034
29514,2291.618034
30832,0401.618034
311,346,2691.618034
322,178,3091.618034
333,524,5781.618034
345,702,8871.618034
359,227,4651.618034
3614,930,3521.618034
3724,157,8171.618034
3839,088,1691.618034
3963,245,9861.618034
40102,334,1551.618034
41165,580,1411.618034
42267,914,2961.618034
43433,494,4371.618034
44701,408,7331.618034
451,134,903,1701.618034
461,836,311,9031.618034
472,971,215,0731.618034
484,807,526,9761.618034
497,778,742,0491.618034
5012,586,269,0251.618034

Key Properties

  • Golden ratio: lim F(n+1)/F(n) = φ = (1 + √5) / 2 ≈ 1.61803398875…
  • Every 3rd term is divisible by 2, every 4th by 3, every 5th by 5 (Pisano periods).
  • Sum of first n terms: F(1) + F(2) + … + F(n) = F(n+2) − 1.
  • Binet's formula: F(n) = (φⁿ − ψⁿ) / √5, where ψ = (1 − √5) / 2.
  • Perfect squares: F(1) = 1, F(2) = 1, F(12) = 144 are the only perfect square Fibonacci numbers.

References

See also