OFFSET
0,6
COMMENTS
When the sequence is displayed as a triangle, the row corresponding to stage k >= 2 is a permutation of the numbers from Fibonacci(k) - 1 to Fibonacci(k+2) - 2.
EXAMPLE
As an irregular triangle, the sequence begins:
0;
0;
0, 1;
1, 2, 3;
2, 3, 4, 5, 6;
4, 5, 7, 6, 8, 9, 10, 11;
7, 8, 9, 12, 10, 13, 11, 15, 14, 16, 17, 18, 19;
...
At stage 5 we look at two previous stages 3 and 4 and see the
positions of 1's: 4;
positions of 2's: 5, 7;
positions of 3's: 6, 8;
positions of 4's: 9;
positions of 5's: 10;
positions of 6's: 11;
thus stage 5 is 4, 5, 7, 6, 8, 9, 10, 11.
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Ctibor O. Zizka, Nov 21 2022
STATUS
approved