OFFSET
0,6
COMMENTS
These are partitions without a neighborless part, where a part x is neighborless if neither x - 1 nor x + 1 are parts. The first counted partition that does not cover an interval is (5,4,2,1).
LINKS
Lucas A. Brown, Table of n, a(n) for n = 0..100
Lucas A. Brown, A355394.py
EXAMPLE
The a(0) = 1 through a(9) = 11 partitions:
() . . (21) (211) (32) (321) (43) (332) (54)
(221) (2211) (322) (3221) (432)
(2111) (21111) (2221) (22211) (3222)
(3211) (32111) (3321)
(22111) (221111) (22221)
(211111) (2111111) (32211)
(222111)
(321111)
(2211111)
(21111111)
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], Function[ptn, !Or@@Table[!MemberQ[ptn, x-1]&&!MemberQ[ptn, x+1], {x, Union[ptn]}]]]], {n, 0, 30}]
CROSSREFS
These partitions are ranked by A356736.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 26 2022
EXTENSIONS
a(31)-a(59) from Lucas A. Brown, Sep 04 2022
STATUS
approved