Fibonacci column Summary

Recurrence relations:

1 int f(int n)
2 {
3     if(n==0)
4         return 0;
5     else if (n==1)
6         return 1;
7     else
8         return f(n-1)+f(n-2);
9 }

 

  1. G the c d' ( F I + 1 , F I ) = 1

  2. gcd(Fi,Fj)=F(gcd(i,j))

  3. Fm+n=Fm1Fn+FmFn+1

  4. Sn=Fn+2 -1

 

Related topics:

Sata final exam Virginia
Fibonacci Convention
number listed Fibonacci Fibonacci
Fibonacci
pink cherry blossoms Love

Guess you like

Origin www.cnblogs.com/OFSHK/p/11258890.html