A361858 Number of integer partitions of n such that the maximum is less than twice the median.
1, 2, 3, 4, 5, 8, 8, 12, 15, 19, 22, 31, 34, 45, 55, 67, 78, 100, 115, 144, 170, 203, 238, 291, 337, 403, 473, 560, 650, 772, 889, 1046, 1213, 1414, 1635, 1906, 2186, 2533, 2913, 3361, 3847, 4433, 5060, 5808, 6628, 7572, 8615, 9835, 11158, 12698, 14394
Offset: 1
Keywords
Examples
The a(1) = 1 through a(8) = 12 partitions: (1) (2) (3) (4) (5) (6) (7) (8) (11) (21) (22) (32) (33) (43) (44) (111) (31) (41) (42) (52) (53) (1111) (221) (51) (61) (62) (11111) (222) (322) (71) (321) (331) (332) (2211) (2221) (431) (111111) (1111111) (2222) (3221) (3311) (22211) (11111111) The partition y = (3,2,2,1) has maximum 3 and median 2, and 3 < 2*2, so y is counted under a(8).
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],Max@@#<2*Median[#]&]],{n,30}]
Comments