OFFSET
1,4
COMMENTS
The number of partitions of n such that (sum distinct even parts) = n/2 is A284617(n)-A284616(n) = A284619(n)-A284618(n) = 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 15, 0, 0, 0, 23, 0, 0, 0, 55, 0, 0, 0, 153, 0, 0, 0, 265,... (offset 1, nonzero for 4|n) - R. J. Mathar, Aug 14 2023
EXAMPLE
a(4) counts these 3 partitions: 4, 22, 211.
MATHEMATICA
Table[p = IntegerPartitions[n];
Length[Select[Table[Total[Select[DeleteDuplicates[p[[k]]], EvenQ]], {k,
Length[p]}], # >= n/2 &]], {n, 54}]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 02 2017
STATUS
approved