Math & Crypto
Fibonacci Sequence Explorer
Key in a position (0-indexed) to get its Fibonacci number, see the growth curve, and compare with the golden ratio.
Sequence starts 0, 1, 1, 2, 3, 5, 8… where index 0 → 0. Made for quick intuition—all values computed in-browser.
API
Call /tools/fibonacci-sequence/?f=10 for JSON:
{"error":0,"position":10,"result":55}
Max position: 200.
Result
Growth curve
Why the golden ratio show up
As n grows, the ratio F(n+1)/F(n) gets closer to the golden ratio φ = (1 + √5) / 2. That’s why Fibonacci spirals and φ appear in nature, art, and even some trading heuristics. In cryptography, fast growth shows how quickly numbers explode—damn handy intuition for big-integer math.