A124148 Fibonacci triangle read by rows; the triangles below read by rows. Analog of A124171.
1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 2, 3, 1, 1, 1, 1, 1, 2, 1, 1, 2, 3, 1, 1, 2, 3, 5, 1, 1, 1, 1, 1, 2, 1, 1, 2, 3, 1, 1, 2, 3, 5, 1, 1, 2, 3, 5, 8, 1, 1, 1, 1, 1, 2, 1, 1, 2, 3, 1, 1, 2, 3, 5, 1, 1, 2, 3, 5, 8, 1, 1, 2, 3, 5, 8, 13, 1, 1
Offset: 1
Examples
1 1 1, 1 1 1, 1 1, 1, 2 1 1, 1 1, 1, 2 1, 1, 2, 3 1 1, 1 1, 1, 2 1, 1, 2, 3 1, 1, 2, 3, 5
Programs
-
Mathematica
Flatten[((Fibonacci@ Range@ # &) /@ Range@# &) /@ Range[10]] (* Giovanni Resta, Jun 16 2016 *)
Formula
Extensions
Data corrected by Giovanni Resta, Jun 16 2016
Comments