Skip to main content

learn.howToCalculate

learn.whatIsHeading

The Fibonacci sequence is a series where each number is the sum of the two preceding ones: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34... The ratio of consecutive Fibonacci numbers approaches the golden ratio φ ≈ 1.618.

ଷ୍ଟେପ୍-ଷ୍ଟେପ୍ ଗାଇଡ୍ |

  1. 1F(0) = 0, F(1) = 1
  2. 2F(n) = F(n-1) + F(n-2)
  3. 3Closed form (Binet's formula): F(n) = (φⁿ − ψⁿ) / √5
  4. 4φ = (1+√5)/2 ≈ 1.6180339887 (golden ratio)

ସମାଧାନ ହୋଇଥିବା ଉଦାହରଣ

ଇନପୁଟ୍
F(10)
ଫଳ
55
0,1,1,2,3,5,8,13,21,34,55
ଇନପୁଟ୍
F(20)
ଫଳ
6,765
ଇନପୁଟ୍
F(50)
ଫଳ
12,586,269,025
About 12.6 billion

ସେଟିଂ