login
A284616
Number of partitions of n such that the (sum of distinct even parts) < n/2.
4
1, 1, 2, 2, 6, 8, 11, 14, 23, 29, 38, 48, 81, 102, 131, 163, 235, 293, 364, 448, 622, 762, 933, 1134, 1571, 1906, 2311, 2784, 3682, 4425, 5305, 6339, 8219, 9796, 11648, 13808, 17543, 20743, 24484, 28817, 36600, 43025, 50477, 59101, 73401, 85788, 100085
OFFSET
1,3
EXAMPLE
a(4) counts these 2 partitions: 31, 1111.
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