Small index
Input: n = 10
Output: F(10) = 55, Sequence: 1, 1, 2, 3, 5, 8, 13, 21, 34, 55
500+ fast, free tools. Most run in your browser only; Image & PDF tools upload files to the backend when you run them.
Calculate Fibonacci numbers by index, find the index of a Fibonacci number, and visualize the Fibonacci sequence.
The Fibonacci Calculator computes Fibonacci numbers by their 1-based index (F(1)=1, F(2)=1, F(3)=2...), lists the complete sequence up to any index, and calculates the golden ratio approximation as F(n+1)/F(n) for large n. The tool uses BigInt for precise large-integer arithmetic, making it accurate for indices well beyond what standard floating-point can handle. It also includes an inverse function: enter any number to check whether it is a Fibonacci number and, if so, its index. This is a useful reference for mathematics students, algorithm learners, and anyone exploring number theory or nature's mathematical patterns.
Input: n = 10
Output: F(10) = 55, Sequence: 1, 1, 2, 3, 5, 8, 13, 21, 34, 55
Input: n = 50
Output: F(50) = 12586269025, F(51)/F(50) ≈ 1.6180339887
Input: n = 200
Output: F(200) = 280571172992510140037611932413038677189525 (42 digits)
Input: Is 144 a Fibonacci number?
Output: Yes — 144 = F(12)