OFFSET
0,5
EXAMPLE
The partition y = (8,6,3,3,3,1) has maximal anti-runs ((8,6,3),(3),(3,1)), with lengths (3,1,2), so y is counted under a(24).
The partition z = (8,6,5,3,3,1) has maximal anti-runs ((8,6),(5,3),(3,1)), with lengths (2,2,2), so z is not counted under a(26).
The a(1) = 1 through a(9) = 9 partitions:
(1) (2) (3) (4) (5) (6) (7) (8) (9)
(3,1) (4,1) (4,2) (5,2) (5,3) (6,3)
(3,1,1) (5,1) (6,1) (6,2) (7,2)
(4,1,1) (3,3,1) (7,1) (8,1)
(4,2,1) (4,2,2) (4,4,1)
(5,1,1) (4,3,1) (5,2,2)
(5,2,1) (5,3,1)
(6,1,1) (6,2,1)
(7,1,1)
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], UnsameQ@@Length/@Split[#, #2<#1-1&]&]], {n, 0, 15}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jun 13 2025
STATUS
approved
