Find the Fibonacci numbers (i.e., `1,1,2,3,5,8,13,21,cdots`) that are hidden in the Pascals triangle.(Hint. Re-arrange the Pascals triangle in the following way: `((1, , , , , , ,),(1, 1, , , , , , ),(1, 2,bb1, , , , , ),(1, bb3,3,1, , , , ),(bb1, 4,6,4,1, , , ),(1, 5,10,10,5,1, , ),(1, 6,15,20,15,6,1, ),(1, 7,21,35,35,21,7,1))` For each row, add up the first number of the row, the second number of its first upper row, the third number of its second upper row, and so on until there are no numbers to add up. For example, `bb1+bb3+bb1=5` for the 5th row and `1+4+3=8` for the 6th row.)
|