OFFSET
0,3
COMMENTS
By conjugation, also the number of integer partitions of 2n+1 covering an initial interval of positive integers with greatest part even.
EXAMPLE
The a(1) = 1 through a(7) = 13 strict partitions:
(2,1) (3,2) (4,3) (5,4) (6,5) (7,6) (8,7)
(4,1) (5,2) (6,3) (7,4) (8,5) (9,6)
(6,1) (7,2) (8,3) (9,4) (10,5)
(8,1) (9,2) (10,3) (11,4)
(10,1) (11,2) (12,3)
(5,3,2,1) (12,1) (13,2)
(5,4,3,1) (14,1)
(6,4,2,1) (6,4,3,2)
(7,3,2,1) (6,5,3,1)
(7,4,3,1)
(7,5,2,1)
(8,4,2,1)
(9,3,2,1)
MATHEMATICA
Table[Length[Select[IntegerPartitions[2n+1], UnsameQ@@#&&EvenQ[Length[#]]&]], {n, 0, 15}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jun 09 2021
EXTENSIONS
More terms from Bert Dobbelaere, Jun 12 2021
STATUS
approved