A212001 Triangle read by rows: T(n,k) = sum of all parts of the last n-k+1 shells of n.
1, 4, 3, 9, 8, 5, 20, 19, 16, 11, 35, 34, 31, 26, 15, 66, 65, 62, 57, 46, 31, 105, 104, 101, 96, 85, 70, 39, 176, 175, 172, 167, 156, 141, 110, 71, 270, 269, 266, 261, 250, 235, 204, 165, 94, 420, 419, 416, 411, 400, 385, 354, 315, 244, 150, 616, 615
Offset: 1
Examples
For n = 5 the illustration shows five sets containing the last n-k+1 shells of 5 and below the sum of all parts of each set: -------------------------------------------------------- . S{1-5} S{2-5} S{3-5} S{4-5} S{5} -------------------------------------------------------- . The Last Last Last The . five four three two last . shells shells shells shells shell . of 5 of 5 of 5 of 5 of 5 -------------------------------------------------------- . . 5 5 5 5 5 . 3+2 3+2 3+2 3+2 3+2 . 4+1 4+1 4+1 4+1 1 . 2+2+1 2+2+1 2+2+1 2+2+1 1 . 3+1+1 3+1+1 3+1+1 1+1 1 . 2+1+1+1 2+1+1+1 1+1+1 1+1 1 . 1+1+1+1+1 1+1+1+1 1+1+1 1+1 1 . ---------- ---------- ---------- ---------- ---------- . 35 34 31 26 15 . So row 5 lists 35, 34, 31, 26, 15. . Triangle begins: 1; 4, 3; 9, 8, 5; 20, 19, 16, 11; 35, 34, 31, 26, 15; 66, 65, 62, 57, 46, 31; 105, 104, 101, 96, 85, 70, 39; 176, 175, 172, 167, 156, 141, 110, 71; 270, 269, 266, 261, 250, 235, 204, 165, 94; 420, 419, 416, 411, 400, 385, 354, 315, 244, 150;
Comments