Fibonacci Calculator
Generate the Fibonacci sequence up to any number of terms, live as you type, with no precision loss.
Computed live using JavaScript's BigInt, so it stays exact even at hundreds of terms (a plain number would lose precision well before then). The sequence starts at 0. Runs entirely in your browser.
What is Fibonacci Calculator?
Choose how many terms you want and see the Fibonacci sequence generated instantly — computed with JavaScript's BigInt, so it stays exact even hundreds of terms in, well past where a normal number would lose precision.
FAQ
At 0: 0, 1, 1, 2, 3, 5, 8, 13, and so on, which is the standard convention.
Fibonacci numbers grow exponentially — by term 79 the value already exceeds what a standard JavaScript number can represent exactly, so BigInt keeps every term precise no matter how far you go.