OFFSET
0,5
COMMENTS
A multiset is inseparable iff it has no permutation without adjacent equal parts. It is of inseparable type iff any multiset with those multiplicities (type) is inseparable. For example, {1,1,2} is separable but {1,1,1,2} is not; hence (2,1) is of separable type but (3,1) is not.
Also the number of integer partitions of n whose greatest part is at least two more than the sum of all the other parts.
EXAMPLE
The a(2) = 1 through a(10) = 12 partitions (A=10):
(2) (3) (4) (5) (6) (7) (8) (9) (A)
(31) (41) (42) (52) (53) (63) (64)
(51) (61) (62) (72) (73)
(411) (511) (71) (81) (82)
(521) (621) (91)
(611) (711) (622)
(5111) (6111) (631)
(721)
(811)
(6211)
(7111)
(61111)
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], 2*Max@@#>1+n&]], {n, 0, 15}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 14 2025
STATUS
approved
