Skip to content
Allin

Fibonacci calculator

Find the nth number in the Fibonacci sequence.

List of Fibonacci numbersGenerate the first n Fibonacci numbers exactly, with big-integer precision — each term the sum of the two before it, starting 0, 1, 1, 2, 3, 5, 8… The sequence hides the golden ratio and shows up throughout nature and mathematics. Returns the list and its sum.Fibonacci Number CheckerTest any number up to 60 digits with the exact 5n^2 +/- 4 identity, with its index, its neighbours in the sequence and the ratio compared with the golden ratio.Arithmetic sequence calculatorFind the nth term and the sum of an arithmetic sequence.Catalan number generatorGenerate the nth Catalan number exactly, with big-integer precision. The Catalan numbers Cₙ = (2n)! / ((n+1)! n!) count an astonishing range of structures: balanced parentheses, binary trees, polygon triangulations, Dyck paths and hundreds more. Also lists C₀ through Cₙ.Geometric sequence calculatorFind the nth term and the sum of a geometric sequence.Partition function calculatorCompute p(n), the number of ways to write an integer as a sum of positive integers regardless of order — so 4 = 4 = 3+1 = 2+2 = 2+1+1 = 1+1+1+1 gives p(4) = 5. It uses Euler's pentagonal number recurrence with big integers, exact up to n = 500.Triangular number calculatorCompute the nth triangular number (1 + 2 + … + n).Collatz conjecture calculatorTrace the Collatz sequence from any positive integer: halve it if even, triple-plus-one if odd, and repeat until you reach 1. The famous unproven conjecture says every number eventually does. See the full trajectory, the number of steps and the peak value it soars to.

Need Fibonacci number? The Fibonacci calculator derives it from Position (n) in one step. For instance, with Position (n) = 10 it returns Fibonacci number = 55.

How to use it

  1. Enter your values: Position (n).
  2. Read the result instantly: Fibonacci number.

Frequently asked questions

What does the Fibonacci calculator actually compute?

It takes Position (n) and derives Fibonacci number from them. The calculation is live as you type, so the result updates on every change.

What information do I need to provide?

A single value: Position (n). Nothing else is required — no account, no file upload.

Can you show a worked example?

With Position (n) = 10, the calculator returns Fibonacci number = 55. Those figures come from running this exact tool, so you can reproduce them by entering the same values.

What happens if I enter larger values?

It moves a lot. Using Position (n) = 20 instead, Fibonacci number goes from 55 to 6,765 — which is why it is worth testing a few scenarios rather than trusting a single figure.

What does it give for smaller values?

Scaled down to Position (n) = 5, Fibonacci number comes out at 5. The relationship is worth checking at both ends before you rely on a single result.

When would I actually use this?

Finding the nth term without listing every one before it, summing a long run in one step, and recognising which family a sequence belongs to.

What is the most common mistake?

Starting the index at the wrong end. Whether the first term is a₀ or a₁ shifts every result by one position, and the two conventions are both common.

What is the difference between the Fibonacci calculator and the List of Fibonacci numbers?

This one returns Fibonacci number; the List of Fibonacci numbers returns Fibonacci numbers and Sum of the terms. That is the whole difference — open the one whose figure you need.

Is there a tool for the next step?

Fibonacci Number Checker is the closest one after this: Test any number up to 60 digits with the exact 5n^2 +/- 4 identity, with its index, its neighbours in the sequence and the ratio compared with the golden ratio.

Where do the figures come from, and how current are they?

The closed forms are the standard ones, and the tool states the indexing convention it uses so a result can be compared against a textbook without ambiguity.

Further reading

All guides