OFFSET
0,6
COMMENTS
In other words, the parts are not disjoint from their own first differences.
EXAMPLE
The a(3) = 1 through a(9) = 13 partitions:
(21) (211) (221) (42) (421) (422) (63)
(2111) (321) (2221) (431) (621)
(2211) (3211) (521) (3321)
(21111) (22111) (3221) (4221)
(211111) (4211) (4311)
(22211) (5211)
(32111) (22221)
(221111) (32211)
(2111111) (42111)
(222111)
(321111)
(2211111)
(21111111)
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], Intersection[#, -Differences[#]]!={}&]], {n, 0, 30}]
PROG
(Python)
from collections import Counter
from sympy.utilities.iterables import partitions
def A364467(n): return sum(1 for s, p in map(lambda x: (x[0], tuple(sorted(Counter(x[1]).elements()))), partitions(n, size=True)) if not set(p).isdisjoint({p[i+1]-p[i] for i in range(s-1)})) # Chai Wah Wu, Sep 26 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jul 31 2023
STATUS
approved