Zero Signup ToolsFree browser tools

Calculator Tools

Fibonacci Sequence Generator

Generate Fibonacci numbers and look up any term up to F(5000) in your browser. Sequence, sum, golden ratio, custom seeds, and copy buttons.

From 1 to 2,000 terms.

Presets

Sequence

20 terms (classic 0, 1 Fibonacci)

Format
F(0) = 0
F(1) = 1
F(2) = 1
F(3) = 2
F(4) = 3
F(5) = 5
F(6) = 8
F(7) = 13
F(8) = 21
F(9) = 34
F(10) = 55
F(11) = 89
F(12) = 144
F(13) = 233
F(14) = 377
F(15) = 610
F(16) = 987
F(17) = 1597
F(18) = 2584
F(19) = 4181

Sum of terms

10,945

Largest term

4,181

4 digits

Even terms

7

Odd terms

13

Nth term lookup

Computed with the fast-doubling method. No need to generate the full sequence to read a single term.

F(100)

21 digits

354,224,848,179,261,915,075

Golden ratio convergence

The ratio of two consecutive Fibonacci terms approaches the golden ratio phi as the sequence grows.

  • Latest ratio

    1.618034055727554

  • Golden ratio (phi)

    1.618033988749895

  • Distance to phi

    6.70e-8

Full report

Sequence, stats, ratio, and Nth term in plain text.

Fibonacci sequence (seeds 0, 1, 20 terms)

F(0) = 0
F(1) = 1
F(2) = 1
F(3) = 2
F(4) = 3
F(5) = 5
F(6) = 8
F(7) = 13
F(8) = 21
F(9) = 34
F(10) = 55
F(11) = 89
F(12) = 144
F(13) = 233
F(14) = 377
F(15) = 610
F(16) = 987
F(17) = 1597
F(18) = 2584
F(19) = 4181

Sum: 10945
Even-indexed terms: 7
Odd-indexed terms: 13
Largest term: 4181
Smallest term: 0
Latest ratio F(n)/F(n-1): 1.618034055727554
Golden ratio phi:           1.618033988749895
Distance to phi:            6.70e-8

F(100) = 354224848179261915075 (21 digits)

How to use

  1. Type the number of terms you want (1 to 2,000) into the How many terms field.
  2. Leave the seeds as F(0) = 0 and F(1) = 1 for the classic Fibonacci sequence, or change them to 2 and 1 for the Lucas sequence or any other custom starting pair.
  3. Tap a preset chip (First 10, First 50, First 100, Lucas, and so on) to fill the inputs with a popular configuration.
  4. Read the sequence in numbered list, comma, or JSON format and copy it with the Copy sequence button. Stats below show the sum, largest term, and even or odd counts.
  5. Use the Nth term lookup card to compute a single term (F(50), F(100), F(500), F(1000), F(2500), F(5000)) without generating the whole sequence, and watch the golden ratio convergence panel for the ratio of the last two terms.

About this tool

Fibonacci Sequence Generator builds the Fibonacci sequence and finds any term you ask for, using exact-integer BigInt arithmetic so the math stays correct even when the numbers grow into hundreds of digits. The classic recurrence starts at 0, 1, 1, 2, 3, 5, 8, 13, 21, 34 and continues by adding the previous two terms; this page generates up to 2,000 terms at a time and reports the index, value, and digit count for every entry. A separate Nth term lookup card uses the fast-doubling identities (F(2k) = F(k) (2 F(k+1) minus F(k)) and F(2k+1) = F(k)^2 plus F(k+1)^2) so values like F(500), F(1000), F(2500), or F(5000) compute in milliseconds without enumerating the whole sequence. Beyond the raw numbers the tool reports the running sum, the count of even and odd terms, the largest term, and the ratio of the last two terms compared with the golden ratio phi (1.618033988749895) so you can watch the sequence converge in real time. The starting values are editable, so you can produce the Lucas sequence (2, 1, 3, 4, 7, 11, 18, 29), generalized Fibonacci-like recurrences, or any custom Horadam-style sequence with two integer seeds. Output is available as a numbered list (F(0) = 0, F(1) = 1, ...), a comma-separated list, or a JSON array, with copy buttons on the sequence, the lookup value, and a full plain-text report. Useful for homework on the Fibonacci recurrence and the golden ratio, programming exercises that test BigInt or memoised recursion, design work that uses Fibonacci-based spacing or grid systems, and anyone curious how quickly F(n) grows or how quickly the ratio approaches phi. Everything runs locally in your browser, so the numbers you type stay on your device.

Free to use. Works in your browser. No signup, no login.

Related tools

You may also like

All tools
All toolsCalculator Tools