Skip to content
Kordu Tools

Fibonacci Generator

Generate Fibonacci sequences, check if a number is Fibonacci, and see the golden ratio convergence.

Enter 1 to 1,000.

,

Golden Ratio (φ)

1.6180339887

F(n)/F(n−1) converges to

1.6180340557

20 terms

nF(n)F(n)/F(n−1)
00
11
211.0000000000
322.0000000000
431.5000000000
551.6666666667
681.6000000000
7131.6250000000
8211.6153846154
9341.6190476190
10551.6176470588
11891.6181818182
121441.6179775281
132331.6180555556
143771.6180257511
156101.6180371353
169871.6180327869
1715971.6180344478
1825841.6180338134
1941811.6180340557

Formulae

F(0) = 0, F(1) = 1, F(n) = F(n−1) + F(n−2)

φ = (1 + √5) / 2 ≈ 1.618034

Fibonacci test: N is Fibonacci iff 5N² ± 4 is a perfect square

Binet's formula: F(n) = (φ^n − ψ^n) / √5, where ψ = 1 − φ

How to use

  1. 1

    Choose a mode

    Select Generate Sequence or Check Number.

  2. 2

    Enter a value

    For generation, enter how many terms. For checking, enter the number to test.

  3. 3

    View results

    The sequence is displayed in a table with index, value, and ratio columns.

Frequently asked questions

What is the Fibonacci sequence?
Each number is the sum of the two before it: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34...
What is the golden ratio?
The ratio of consecutive Fibonacci numbers converges to phi (approximately 1.618034).
How do I check if a number is Fibonacci?
A number N is Fibonacci if and only if 5N^2+4 or 5N^2-4 is a perfect square.
Is my data sent anywhere?
No. All processing runs in your browser.

Generate the Fibonacci sequence up to the Nth term with BigInt support

for large values. Check whether any number belongs to the Fibonacci

sequence. See the golden ratio convergence as F(n+1)/F(n) approaches

phi. Supports custom starting values for generalized Fibonacci sequences.

All processing runs in your browser.

Related tools