Fibonacci Sequence

definition: a0=0; a1=1; an = an-1 + an-2;
example: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, ...

the nth number to obtain