0,1,1,2,3,5,8,13,21,34,55 ......
该序列是有前两项数值相加而成的。
function Fib(n){ if(n<2){ return n; else{ return Fib(n-1)+Fib(n-2); } }