A361857 Number of integer partitions of n such that the maximum is greater than twice the median.
0, 0, 0, 0, 1, 2, 3, 7, 11, 16, 25, 37, 52, 74, 101, 138, 185, 248, 325, 428, 554, 713, 914, 1167, 1476, 1865, 2336, 2922, 3633, 4508, 5562, 6854, 8405, 10284, 12536, 15253, 18489, 22376, 26994, 32507, 39038, 46802, 55963, 66817, 79582, 94643, 112315
Offset: 1
Keywords
Examples
The a(5) = 1 through a(10) = 16 partitions: (311) (411) (511) (521) (522) (622) (3111) (4111) (611) (621) (721) (31111) (4211) (711) (811) (5111) (5211) (5221) (32111) (6111) (5311) (41111) (33111) (6211) (311111) (42111) (7111) (51111) (43111) (321111) (52111) (411111) (61111) (3111111) (331111) (421111) (511111) (3211111) (4111111) (31111111) The partition y = (5,2,2,1) has maximum 5 and median 2, and 5 > 2*2, so y is counted under a(10).
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],Max@@#>2*Median[#]&]],{n,30}]
Comments