A206561 Triangle read by rows: T(n,k) = total sum of parts >= k in all partitions of n.
1, 4, 2, 9, 5, 3, 20, 13, 7, 4, 35, 23, 15, 9, 5, 66, 47, 31, 19, 11, 6, 105, 75, 53, 35, 23, 13, 7, 176, 131, 93, 66, 42, 27, 15, 8, 270, 203, 151, 106, 74, 49, 31, 17, 9, 420, 323, 241, 178, 126, 86, 56, 35, 19, 10, 616, 477, 365, 272, 200, 140, 98, 63, 39, 21, 11
Offset: 1
Examples
Triangle begins: 1; 4, 2; 9, 5, 3; 20, 13, 7, 4; 35, 23, 15, 9, 5; 66, 47, 31, 19, 11, 6; 105, 75, 53, 35, 23, 13, 7; ...
Links
- Alois P. Heinz, Rows n = 1..141, flattened
Crossrefs
Right border gives A000027.
Row sums give A066183. - Omar E. Pol, Mar 19 2018
Programs
-
Mathematica
Table[With[{s = IntegerPartitions[n]}, Table[Total@ Flatten@ Map[Select[#, # >= k &] &, s], {k, n}]], {n, 11}] // Flatten (* Michael De Vlieger, Mar 19 2018 *)
Formula
Extensions
More terms from Alois P. Heinz, Feb 14 2012
Comments