OFFSET
1,7
COMMENTS
Consequently the sum of all even parts is ceiling(n/2). Therefore, a(4n + 1) = a(4n + 2) = 0. - David A. Corneth, Apr 02 2017
EXAMPLE
a(8) counts these 4 partitions: 431, 3221, 32111, 311111.
MATHEMATICA
Table[p = IntegerPartitions[n]; Length[Select[
Table[Total[Select[DeleteDuplicates[p[[k]]], EvenQ]], {k,
Length[p]}], # == Floor[n/2] &]], {n, 60}] (* Peter J. C. Moses, Mar 29 2017 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Mar 30 2017
STATUS
approved