A228823 Triangle read by rows: T(n,k) = total number of parts in all partitions of n that contain k as a part, n>=1, 1<=k<=n.
1, 2, 1, 5, 2, 1, 9, 5, 2, 1, 17, 9, 5, 2, 1, 27, 17, 9, 5, 2, 1, 46, 27, 17, 9, 5, 2, 1, 69, 46, 27, 17, 9, 5, 2, 1, 108, 69, 46, 27, 17, 9, 5, 2, 1, 158, 108, 69, 46, 27, 17, 9, 5, 2, 1, 234, 158, 108, 69, 46, 27, 17, 9, 5, 2, 1, 331, 234, 158, 108, 69
Offset: 1
Examples
Triangle begins: 1; 2, 1; 5, 2, 1; 9, 5, 2, 1; 17, 9, 5, 2, 1; 27, 17, 9, 5, 2, 1; 46, 27, 17, 9, 5, 2, 1; 69, 46, 27, 17, 9, 5, 2, 1; 108, 69, 46, 27, 17, 9, 5, 2, 1; 158, 108, 69, 46, 27, 17, 9, 5, 2, 1; 234, 158, 108, 69, 46, 27, 17, 9, 5, 2, 1; 331, 234, 158, 108, 69, 46, 27, 17, 9, 5, 2, 1;
Comments