A359893 Triangle read by rows where T(n,k) is the number of integer partitions of n with median k, where k ranges from 1 to n in steps of 1/2.
1, 1, 0, 1, 1, 1, 0, 0, 1, 2, 0, 2, 0, 0, 0, 1, 3, 0, 1, 2, 0, 0, 0, 0, 1, 4, 1, 2, 0, 3, 0, 0, 0, 0, 0, 1, 6, 1, 3, 0, 1, 3, 0, 0, 0, 0, 0, 0, 1, 8, 1, 6, 0, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 11, 2, 7, 1, 3, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1
Offset: 1
Examples
Triangle begins: 1 1 0 1 1 1 0 0 1 2 0 2 0 0 0 1 3 0 1 2 0 0 0 0 1 4 1 2 0 3 0 0 0 0 0 1 6 1 3 0 1 3 0 0 0 0 0 0 1 8 1 6 0 2 0 4 0 0 0 0 0 0 0 1 11 2 7 1 3 0 1 4 0 0 0 0 0 0 0 0 1 15 2 10 3 4 0 2 0 5 0 0 0 0 0 0 0 0 0 1 20 3 13 3 7 0 3 0 1 5 0 0 0 0 0 0 0 0 0 0 1 26 4 19 3 11 1 4 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 1 For example, row n = 8 counts the following partitions: 611 4211 422 . 332 . 44 . . . . . . . 8 5111 521 431 53 32111 2222 62 41111 3221 71 221111 3311 311111 22211 2111111 11111111
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n], Median[#]==k&]],{n,1,10},{k,1,n,1/2}]
Comments