A141289 Triangle read by rows, n-th row = (n-2)-th row appended to the beginning of (n-1)-th row, + n.
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, 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, 7
Offset: 1
Examples
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.
Formula
Triangle read by rows, n-th row = (n-2)-th row appended to the beginning of (n-1)-th row, + n.
Comments