Fibonacci Calculator
Fibonacci numbers F_n for n ≤ 1000. F_0=0, F_1=1. Same engine as Sequence. Exact BigInt. Runs locally.
Trust summary Engine tested · Specification checked · 12/12 tests · Production surface contract 4/4 · v1.0.0
- Input interpretation
- Enter values to calculate.
- Result
- —
- Model
- F_n and the partial sum F_0+⋯+F_n.
- Scope
- F_0=0, F_1=1
- Verification
- Engine tested · 12/12 tests · Production surface contract 4/4 · Specification checked · v1.0.0
- Named expert review
- Optional · Not performed
- Specification basis
- ISO 80000-2:2019 Quantities and units — Mathematics
- Evidence
- 4 golden · 2 boundary · 6 property · Production surface contract 4/4 · Artifact integrity PASS
- Production
- Embedded snapshot: unpublished · Build schema 1.0.0 ready · Semantic contract ✓ · Attestation report not published on origin · Live production status STALE (1 capability; 163 remain CURRENT) @ 2026-09-19T00:00:17.039Z
- Semantic contract
- PASS
Formulas
Core equations used by this calculator.
How to use
Enter n
n=0 is allowed. F_0=0.
Read F_n
Linear recurrence lives on /calc/math/sequence.
Example calculations
Common configurations with formula and result.
F_10
0,1,1,2,3,5,8,13,21,34,55
F_0
Indexing
Fibonacci calculator specification
Version 1.0.0 · Engine tested
- Engine tested 12/12 tests · Production surface contract 4/4
- Named expert review Not performed
- Calculation version 1.0.0
- Definition
- F_0=0, F_1=1, F_n = F_{n-1}+F_{n-2}. This page is mode=fibonacci on the sequence engine. Linear recurrence with p=q=1, a0=0, a1=1 is the same sequence.
- What it calculates
- F_n and the partial sum F_0+⋯+F_n.
- Inputs
- n
- Outputs
- term
- sum
- prev
- Formula
F_n = F_{n−1} + F_{n−2}- Assumptions
- F_0=0, F_1=1
- Integers
- Not Pascal / Binet float
- Units
- dimensionless
- Boundary conditions
- n>1000 → VALUE_ABOVE_MAX
- unknown mode → INVALID_MODE
- Example
- n=10 → 55
- Validation cases
2 published on this page · 12/12 tests · Production surface contract 4/4 · View evidence
- n=10 → 55
- n=0 → 0
- Specification basis
- ISO 80000-2:2019 Quantities and units — Mathematics
- Calculation version
- 1.0.0
Related tools
Other calculators in this family: Arithmetic Sequence Calculator, Factorial Calculator, GCF Calculator, Geometric Sequence Calculator, LCM Calculator, Modular Inverse Calculator, Modulo Calculator, Permutation Combination Calculator . Explore all Number Theory & Discrete Math.
Frequently asked questions
Key distinctions behind the calculation.
Is this a second sequence solver?
No. It is mode=fibonacci on math.sequences.
Do you use Binet’s formula?
No. Exact iterative BigInt. Float64 Binet is out of scope.