🐇 Fibonacci Calculator
Compute the nth Fibonacci number, generate the first n terms, or check whether a number is Fibonacci. BigInt precision with golden-ratio convergence analysis.
F(n) returns the nth Fibonacci number. F(0) = 0, F(1) = 1, F(n) = F(n−1) + F(n−2).
Free online Fibonacci calculator supporting nth term F(n) computation, full sequence generation, and Fibonacci number verification. Uses BigInt for exact arbitrary-precision results with scientific notation, digit count, golden-ratio F(n)/F(n−1) convergence analysis, and step-by-step expansion for small values.