OFFSET
1,3
COMMENTS
FORMULA
Triangle read by rows, n-th row = (n-2)-th row appended to the beginning of (n-1)-th row, + n.
EXAMPLE
First few rows of the triangle are:
1;
1, 2;
1, 1, 2, 3;
1, 2, 1, 1, 2, 3, 4;
1, 1, 2, 3, 1, 2, 1, 1, 2, 3, 4, 5;
1, 2, 1, 1, 2, 3, 4, 1, 1, 2, 3, 1, 2, 1, 1, 2, 3, 4, 5, 6;
...
Row 4 = (1, 2, 1, 1, 2, 3, 4) = (row 2 appended to row 3, + 4); = (1, 2) appended to (1, 1, 2, 3), then 4.
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Gary W. Adamson, Jun 22 2008
STATUS
approved