Skip to main content

কীভাবে Fibonacci গণনা করবেন

Fibonacci কি?

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

গণনা করতে প্রস্তুত? বিনামূল্যে Fibonacci ক্যালকুলেটর চেষ্টা করুন

নিজে চেষ্টা করে দেখুন →

সেটিংস