A225598 Triangle read by rows: T(n,k) = sum of all parts of all regions of the set of partitions of n whose largest part is k.
1, 1, 3, 1, 3, 5, 1, 5, 5, 9, 1, 5, 8, 9, 12, 1, 7, 11, 15, 12, 20, 1, 7, 14, 19, 19, 20, 25, 1, 9, 17, 29, 24, 33, 25, 38, 1, 9, 23, 33, 36, 42, 39, 38, 49, 1, 11, 26, 47, 46, 61, 49, 61, 49, 69, 1, 11, 32, 55, 63, 76, 70, 76, 76, 69, 87, 1, 13, 38, 73, 78, 110, 87, 111, 95, 108, 87, 123
Offset: 1
Examples
For n = 5 and k = 3 the set of partitions of 5 contains two regions whose largest part is 3, they are third region which contains three parts [3, 1, 1] and the sixth region which contains only one part [3]. Therefore the sum of all parts is 3 + 1 + 1 + 3 = 8, so T(5,3) = 8. . . Diagram Illustration of parts ending in column k: . for n=5 k=1 k=2 k=3 k=4 k=5 . _ _ _ _ _ _ _ _ _ _ . |_ _ _ | _ _ _ |_ _ _ _ _| . |_ _ _|_ | |_ _ _| _ _ _ _ |_ _| . |_ _ | | _ _ |_ _ _ _| |_| . |_ _|_ | | |_ _| _ _ _ |_ _| |_| . |_ _ | | | _ _ |_ _ _| |_| |_| . |_ | | | | _ |_ _| |_| |_| |_| . |_|_|_|_|_| |_| |_| |_| |_| |_| . k = 1 2 3 4 5 . The 5th row lists: 1 5 8 9 12 . Triangle begins: 1; 1, 3; 1, 3, 5; 1, 5, 5, 9; 1, 5, 8, 9, 12; 1, 7, 11, 15, 12, 20; 1, 7, 14, 19, 19, 20, 25; 1, 9, 17, 29, 24, 33, 25, 38; 1, 9, 23, 33, 36, 42, 39, 38, 49; 1, 11, 26, 47, 46, 61, 49, 61, 49, 69; 1, 11, 32, 55, 63, 76, 70, 76, 76, 69, 87; 1, 13, 38, 73, 78, 110, 87, 111, 95, 108, 87, 123;
Comments