0 Members and 1 Guest are viewing this topic.
Well the actual Fibonacci sequence starts like this: 0,1,1,2,3,5,8.... if that makes a bit more sense
U[n-1]+U[n-2]=U[n]? where U[0]=0 and U[1]=1. When it goes negative, every other number is positive. 0,1,-1,2,-3,5,-8,13...