The Fibonacci sequence works this way: every number, after the first two is the sum of the two preceding ones. Sounds difficult right? It’s quite simple actually. It starts with 1, the previous number is in this case 0. So our next number will be 1 + 0 = 1. The next numbers are the previous two numbers combined, 1+1 = 2, 2+1 = 3, 3+2 = 5. In short, the sequence looks like this: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233… #FibonacciSequence #Fibonacci