Fibonacci Calculator
Calculate the Fibonacci number at a zero-based index, generate the sequence through that index, and show the running sum and golden-ratio approximation.
Zero-based indexing is used: F0 = 0 and F1 = 1. Enter a whole number from 0 to 1,500.
Nth Fibonacci number and sequence
English Fibonacci calculator intent usually combines two jobs: find the nth term and generate the sequence up to that term. This page uses zero-based indexing, so F0 is 0 and F1 is 1.
Each term after F1 is the sum of the previous two terms.
- Enter a nonnegative integer index.
- Read the exact Fibonacci number.
- Use the table to inspect the sequence through that index.
Golden ratio connection
The ratio of neighboring Fibonacci numbers approaches the golden ratio as n grows.
| Index | Value |
|---|---|
| 10 | 55 |
| 20 | 6,765 |
| 50 | 12,586,269,025 |
Frequently Asked Questions
Sources and References
- Fibonacci Sequence CalculatorInch Calculator
- Fibonacci CalculatorPeasyMath
- Fibonacci NumberWolfram MathWorld
Calculations are based on the listed reference sources. Links open in a new tab.
Related Tools
Calculate n! for non-negative integers from 0 to 170. See the exact factorial value, digit count, and multiplication steps.
Calculate with very large integers using arbitrary precision. Add, subtract, multiply, divide, find remainders, powers, GCD, LCM, and factorials.
Generate all prime numbers up to N with a Sieve of Eratosthenes grid, prime-count summary, and twin-prime pairs.
Raise a base to a power, including negative exponents and exact fractional exponents such as 1/2 and 1/3. Includes scientific notation and reciprocal output.