OFFSET
0,5
COMMENTS
We define a co-mode in a multiset to be an element that appears at most as many times as each of the others. For example, the co-modes of {a,a,b,b,b,c,c} are {a,c}.
EXAMPLE
The a(1) = 1 through a(10) = 7 partitions:
1 11 111 211 221 21111 2221 22211 22221 33211
1111 2111 111111 22111 221111 32211 222211
11111 211111 2111111 2211111 322111
1111111 11111111 21111111 2221111
111111111 22111111
211111111
1111111111
The a(9) = 5 through a(12) = 8 partitions:
(22221) (33211) (33221) (2222211)
(32211) (222211) (222221) (3222111)
(2211111) (322111) (322211) (3321111)
(21111111) (2221111) (332111) (32211111)
(111111111) (22111111) (2222111) (222111111)
(211111111) (3221111) (2211111111)
(1111111111) (22211111) (21111111111)
(221111111) (111111111111)
(2111111111)
(11111111111)
MATHEMATICA
comsi[ms_]:=Select[Union[ms], Count[ms, #]<=Min@@Length/@Split[ms]&];
Table[If[n==0, 0, Length[Select[IntegerPartitions[n], Union[#]==Range[Max@@#]&&Length[comsi[#]]==1&]]], {n, 0, 30}]
CROSSREFS
The complement is counted by A363264.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jun 06 2023
STATUS
approved