A361850 Number of strict integer partitions of n such that the maximum is twice the median.
0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 2, 1, 3, 3, 4, 2, 5, 4, 7, 8, 10, 6, 11, 11, 15, 16, 21, 18, 25, 23, 28, 32, 40, 40, 51, 51, 58, 60, 73, 75, 93, 97, 113, 123, 139, 141, 164, 175, 199, 217, 248, 263, 301, 320, 356, 383, 426, 450, 511, 551, 613, 664, 737
Offset: 1
Keywords
Examples
The a(7) = 1 through a(20) = 4 strict partitions (A..C = 10..12): 421 . . 631 632 . 841 842 843 A51 A52 A53 A54 C62 5321 6421 7431 7432 8531 8532 C61 9542 7521 64321 8621 9541 9632 65321 9631 85421 9721 The partition (7,4,3,1) has maximum 7 and median 7/2, so is counted under a(15). The partition (8,6,2,1) has maximum 8 and median 4, so is counted under a(17).
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],UnsameQ@@#&&Max@@#==2*Median[#]&]],{n,30}]
Comments