OFFSET
0,5
COMMENTS
A mode in a multiset is an element that appears at least as many times as each of the others. For example, the modes of {a,a,b,b,b,c,d,d,d} are {b,d}.
EXAMPLE
The a(1) = 1 through a(8) = 6 partitions:
(1) (11) (111) (211) (221) (21111) (2221) (3221)
(1111) (2111) (111111) (3211) (22211)
(11111) (22111) (32111)
(211111) (221111)
(1111111) (2111111)
(11111111)
MATHEMATICA
Table[If[n==0, 0, Length[Select[IntegerPartitions[n], Union[#]==Range[Max@@#]&&Length[Commonest[#]]==1&]]], {n, 0, 30}]
CROSSREFS
The complement is counted by A363485.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jun 05 2023
STATUS
approved