OFFSET
0,5
COMMENTS
A multiset is normal if its union is an initial interval of positive integers. A multiset is totally abnormal if it is not normal and either it is a singleton or its multiplicities form a totally abnormal multiset.
The Heinz numbers of these partitions are given by A325372.
EXAMPLE
The a(2) = 1 through a(12) = 8 totally abnormal partitions (A = 10, B = 11, C = 12):
(2) (3) (4) (5) (6) (7) (8) (9) (A) (B) (C)
(22) (33) (44) (333) (55) (66)
(222) (2222) (3322) (444)
(3311) (4411) (3333)
(22222) (4422)
(5511)
(222222)
(333111)
MATHEMATICA
normQ[m_]:=Or[m=={}, Union[m]==Range[Max[m]]];
antinrmQ[ptn_]:=!normQ[ptn]&&(Length[ptn]==1||antinrmQ[Sort[Length/@Split[ptn]]]);
Table[Length[Select[IntegerPartitions[n], antinrmQ]], {n, 0, 30}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 01 2019
STATUS
approved