A364062 Number of integer partitions of n with unique co-mode 1.
0, 1, 1, 1, 1, 2, 1, 3, 2, 3, 3, 6, 2, 8, 6, 9, 6, 16, 7, 21, 12, 23, 18, 39, 17, 47, 32, 59, 40, 86, 44, 110, 72, 131, 95, 188, 103, 233, 166, 288, 201, 389, 244, 490, 347, 587, 440, 794, 524, 974, 727, 1187, 903, 1547, 1106, 1908, 1459, 2303, 1826, 2979, 2198
Offset: 0
Keywords
Examples
The a(n) partitions for n = 5, 7, 11, 13, 15: (221) (331) (551) (661) (771) (11111) (2221) (33221) (4441) (44331) (1111111) (33311) (33331) (55221) (222221) (44221) (442221) (2222111) (332221) (3322221) (11111111111) (2222221) (3333111) (22222111) (22222221) (1111111111111) (222222111) (111111111111111)
Crossrefs
These partitions have ranks A364061.
Programs
-
Mathematica
comodes[ms_]:=Select[Union[ms],Count[ms,#]<=Min@@Length/@Split[ms]&]; Table[Length[Select[IntegerPartitions[n],comodes[#]=={1}&]],{n,0,30}]
Comments