Generate the Fibonacci sequence up to F(200) with exact BigInt precision. Shows golden-ratio convergence, a visual bar chart, and copy as CSV or lines.
Fibonacci Sequence Generator produces F(0) through F(n) using BigInt arithmetic so precision never degrades. F(100) has 21 digits, F(200) has 42, and every digit is correct. Enter a term count up to 200, choose whether the sequence opens with 0 or 1, and the result appears instantly alongside a visual bar chart and a golden-ratio convergence panel.
The golden-ratio display shows the ratio of the last two consecutive terms and compares it to φ = 1.618033988749895. After just 10 terms the ratio is already within 0.03% of φ; by 20 terms it matches to 6 decimal places. The difference column makes the convergence concrete rather than just claimed.
Press Load Sample and the generator loads 10 terms starting from 0. The sequence is:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34
The golden-ratio panel reads F(10)/F(9) = 34/21 = 1.619047…, which already differs from φ by only 0.00101 — less than one tenth of a percent after fewer than a dozen additions.
Switch the Start toggle to 1, 1, 2… and the same 10 positions shift by one: the sequence becomes 1, 1, 2, 3, 5, 8, 13, 21, 34, 55 (F(1) through F(10) in the 1-indexed convention). Both conventions appear in textbooks; the tool copies whichever you chose.
Number type would start losing precision around F(79).1,000,000 in the table copies as 1000000.Start
Copy as
F(10) / F(9)
1.61904761
φ (exact)
1.61803398
Difference
1.014e-3
10 terms
F(10) = 34