A212000 Triangle read by rows: T(n,k) = total number of parts in the last n-k+1 shells of n.
1, 3, 2, 6, 5, 3, 12, 11, 9, 6, 20, 19, 17, 14, 8, 35, 34, 32, 29, 23, 15, 54, 53, 51, 48, 42, 34, 19, 86, 85, 83, 80, 74, 66, 51, 32, 128, 127, 125, 122, 116, 108, 93, 74, 42, 192, 191, 189, 186, 180, 172, 157, 138, 106, 64, 275, 274, 272, 269, 263, 255, 240
Offset: 1
Examples
For n = 5 the illustration shows five sets containing the last n-k+1 shells of 5 and below we can see that the sum of all parts of the first column equals the total number of parts in 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 . ---------- ---------- ---------- ---------- ---------- . 20 19 17 14 8 . So row 5 lists 20, 19, 17, 14, 8. . Triangle begins: 1; 3, 2; 6, 5, 3; 12, 11, 9, 6; 20, 19, 17, 14, 8; 35, 34, 32, 29, 23, 15; 54, 53, 51, 48, 42, 34, 19; 86, 85, 83, 80, 74, 66, 51, 32; 128, 127, 125, 122, 116, 108, 93, 74, 42; 192, 191, 189, 186, 180, 172, 157, 138, 106, 64;
Comments