OFFSET
0,6
COMMENTS
A non-mode in a multiset is an element that appears fewer times than at least one of the others. For example, the non-modes in {a,a,b,b,b,c,d,d,d} are {a,c}.
EXAMPLE
The a(4) = 1 through a(9) = 13 partitions:
(211) (221) (411) (322) (332) (441)
(311) (3111) (331) (422) (522)
(2111) (21111) (511) (611) (711)
(2221) (5111) (3222)
(4111) (22211) (6111)
(22111) (41111) (22221)
(31111) (221111) (32211)
(211111) (311111) (33111)
(2111111) (51111)
(411111)
(2211111)
(3111111)
(21111111)
MATHEMATICA
nmsi[ms_]:=Select[Union[ms], Count[ms, #]<Max@@Length/@Split[ms]&];
Table[Length[Select[IntegerPartitions[n], Length[nmsi[#]]==1&]], {n, 0, 30}]
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 16 2023
STATUS
approved