A359901 Triangle read by rows where T(n,k) is the number of integer partitions of n with median k = 1..n.
1, 1, 1, 1, 0, 1, 2, 2, 0, 1, 3, 1, 0, 0, 1, 4, 2, 3, 0, 0, 1, 6, 3, 1, 0, 0, 0, 1, 8, 6, 2, 4, 0, 0, 0, 1, 11, 7, 3, 1, 0, 0, 0, 0, 1, 15, 10, 4, 2, 5, 0, 0, 0, 0, 1, 20, 13, 7, 3, 1, 0, 0, 0, 0, 0, 1, 26, 19, 11, 4, 2, 6, 0, 0, 0, 0, 0, 1
Offset: 1
Examples
Triangle begins: 1 1 1 1 0 1 2 2 0 1 3 1 0 0 1 4 2 3 0 0 1 6 3 1 0 0 0 1 8 6 2 4 0 0 0 1 11 7 3 1 0 0 0 0 1 15 10 4 2 5 0 0 0 0 1 20 13 7 3 1 0 0 0 0 0 1 26 19 11 4 2 6 0 0 0 0 0 1 35 24 14 5 3 1 0 0 0 0 0 0 1 45 34 17 8 4 2 7 0 0 0 0 0 0 1 58 42 23 12 5 3 1 0 0 0 0 0 0 0 1 For example, row n = 9 counts the following partitions: (7,1,1) (5,2,2) (3,3,3) (4,4,1) . . . . (9) (6,1,1,1) (6,2,1) (4,3,2) (3,3,1,1,1) (3,2,2,2) (5,3,1) (4,2,1,1,1) (4,2,2,1) (5,1,1,1,1) (4,3,1,1) (3,2,1,1,1,1) (2,2,2,2,1) (4,1,1,1,1,1) (3,2,2,1,1) (2,2,1,1,1,1,1) (3,1,1,1,1,1,1) (2,1,1,1,1,1,1,1) (1,1,1,1,1,1,1,1,1)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],Median[#]==k&]],{n,15},{k,n}]
Comments