OFFSET
0,7
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}.
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 A363263.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jun 06 2023
STATUS
approved