Fibonacci Generator
Generate Fibonacci sequences and calculate the Nth Fibonacci number with support for very large values.
AdSense
Top banner
Generate Fibonacci Sequence
Number of terms (1-100)
First 20 Fibonacci numbers (F(0) to F(19)):
01123581321345589144233377610987159725844181
Calculate Nth Fibonacci Number
N (1-1000)
F(50):
7778742049
10 digits
About Fibonacci Numbers
The Fibonacci sequence starts with F(0) = 0 and F(1) = 1. Each subsequent number is the sum of the two preceding ones:
F(n) = F(n-1) + F(n-2)
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...
The ratio of consecutive Fibonacci numbers converges to the golden ratio (phi) = (1 + sqrt(5)) / 2 = 1.6180339887...
Was this page helpful?