OFFSET
0,13
COMMENTS
Rows of the array tend to the Fibonacci sequence.
Row sums of the triangle = A052551: (1, 1, 3, 3, 7, 7, 15, 15, 31, 31, 63, 63, ...).
FORMULA
EXAMPLE
First few rows of the array:
1, 0, 1, 0, 1, 0, 1, ...
1, 1, 1, 2, 1, 3, 1, ...
1, 1, 2, 2, 4, 3, 7, ...
1, 1, 2, 3, 4, 7, 7, ...
1, 1, 2, 3, 5, 7, 12, ...
1, 1, 2, 3, 5, 8, 12, ...
...
First few rows of the triangle:
1;
1, 0;
1, 1, 1;
1, 1, 1, 0;
1, 1, 2, 2, 1;
1, 1, 2, 2, 1, 0;
1, 1, 2, 3, 4, 3, 1;
1, 1, 2, 3, 4, 3, 1, 0;
1, 1, 2, 3, 5, 7, 7, 4, 1;
1, 1, 2, 3, 5, 7, 7, 4, 1, 0;
1, 1, 2, 3, 5, 8, 12, 14, 11, 5, 1;
1, 1, 2, 3, 5, 8, 12, 14, 11, 5, 1, 0;
...
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Feb 18 2008
STATUS
approved