Fibonacci Sequence

Each Fibonacci number is the sum of the two before it, starting from 0 and 1: 0, 1, 1, 2, 3, 5, 8, 13, … The table lists F(0) through F(50) exactly, computed by the same engine as the Calxy Fibonacci calculator.

Definition and formulas

  • Recurrence: F(0) = 0, F(1) = 1, F(n) = F(n − 1) + F(n − 2) for n ≥ 2
  • Binet's formula: F(n) = (φⁿ − ψⁿ) ÷ √5, with φ = (1 + √5)/2 ≈ 1.618034 and ψ = (1 − √5)/2 ≈ −0.618034
  • Rounding shortcut: F(n) is the nearest integer to φⁿ ÷ √5 for n ≥ 0
  • Ratio: F(n + 1) ÷ F(n) approaches the golden ratio φ as n grows
  • Sum: F(0) + F(1) + … + F(n) = F(n + 2) − 1
  • Test: a positive integer x is a Fibonacci number exactly when 5x² + 4 or 5x² − 4 is a perfect square

Sources: NIST Digital Library of Mathematical Functions: DLMF §24.15 Related Sequences of Numbers (Fibonacci numbers)

Fibonacci numbers F(0) to F(50)

Some books start the sequence at F(1) = 1, F(2) = 1. The values are the same; only the index shifts.

Fibonacci numbers F(0) to F(50)
nF(n)F(n) ÷ F(n − 1)
00—
11—
211.000000000
322.000000000
431.500000000
551.666666667
681.600000000
7131.625000000
8211.615384615
9341.619047619
10551.617647059
11891.618181818
121441.617977528
132331.618055556
143771.618025751
156101.618037135
169871.618032787
171,5971.618034448
182,5841.618033813
194,1811.618034056
206,7651.618033963
2110,9461.618033999
2217,7111.618033985
2328,6571.618033990
2446,3681.618033988
2575,0251.618033989
26121,3931.618033989
27196,4181.618033989
28317,8111.618033989
29514,2291.618033989
30832,0401.618033989
311,346,2691.618033989
322,178,3091.618033989
333,524,5781.618033989
345,702,8871.618033989
359,227,4651.618033989
3614,930,3521.618033989
3724,157,8171.618033989
3839,088,1691.618033989
3963,245,9861.618033989
40102,334,1551.618033989
41165,580,1411.618033989
42267,914,2961.618033989
43433,494,4371.618033989
44701,408,7331.618033989
451,134,903,1701.618033989
461,836,311,9031.618033989
472,971,215,0731.618033989
484,807,526,9761.618033989
497,778,742,0491.618033989
5012,586,269,0251.618033989

Sources: OEIS Foundation: A000045 Fibonacci numbers

References

Frequently asked questions

Does the Fibonacci sequence start with 0 or 1?

The modern standard (and OEIS A000045) starts with F(0) = 0 and F(1) = 1. Starting 1, 1 gives the same numbers shifted by one position.

What is the 50th Fibonacci number?

With F(0) = 0, F(50) = 12,586,269,025.