Skip to main content
DigiCalcs

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

계산할 준비가 되셨나요? 무료 Fibonacci 계산기를 사용해 보세요

직접 시도해 보세요 →

설정