A362049 Number of integer partitions of n such that (length) = 2*(median).
0, 1, 0, 0, 0, 0, 1, 3, 3, 3, 3, 3, 3, 4, 5, 9, 12, 19, 22, 29, 32, 39, 43, 51, 57, 70, 81, 101, 123, 153, 185, 230, 272, 328, 386, 454, 526, 617, 708, 824, 951, 1106, 1277, 1493, 1727, 2020, 2344, 2733, 3164, 3684, 4245, 4914, 5647, 6502, 7438, 8533, 9730
Offset: 1
Keywords
Examples
The a(13) = 3 through a(15) = 5 partitions: (7,2,2,2) (8,2,2,2) (9,2,2,2) (8,2,2,1) (9,2,2,1) (10,2,2,1) (8,3,1,1) (9,3,1,1) (10,3,1,1) (3,3,3,3,1,1) (3,3,3,3,2,1) (4,3,3,3,1,1)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],Length[#]==2*Median[#]&]],{n,30}]
Comments