A381079 Number of integer partitions of n whose greatest multiplicity is equal to their sum of distinct parts.
0, 1, 0, 0, 1, 1, 0, 3, 1, 3, 1, 2, 0, 7, 2, 6, 7, 11, 3, 19, 8, 22, 16, 32, 17, 48, 21, 50, 39, 71, 35, 101, 58, 120, 89, 156, 97, 228, 133, 267, 203, 352, 228, 483, 322, 571, 444, 734, 524, 989, 683, 1160, 942, 1490, 1103, 1919, 1438, 2302, 1890, 2881, 2243, 3683, 2842, 4384, 3703, 5461
Offset: 0
Keywords
Examples
The partition (3,2,2,1,1,1,1,1,1) has greatest multiplicity 6 and distinct parts (3,2,1) with sum 6, so is counted under a(13). The a(1) = 1 through a(13) = 7 partitions: 1 . . 22 2111 . 2221 22211 333 331111 5111111 . 33331 22111 222111 32111111 322222 31111 411111 3331111 4411111 61111111 322111111 421111111
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],Max@@Length/@Split[#]==Total[Union[#]]&]],{n,0,30}]
Comments