A284619 Number of partitions of n such that the (sum of distinct even parts) >= n/2.
0, 1, 1, 3, 1, 3, 4, 8, 7, 13, 18, 29, 20, 33, 45, 68, 62, 92, 126, 179, 170, 240, 322, 441, 387, 530, 699, 934, 883, 1179, 1537, 2010, 1924, 2514, 3235, 4169, 4094, 5272, 6701, 8521, 7983, 10149, 12784, 16074, 15733, 19770, 24669, 30726, 29682, 36968, 45755
Offset: 1
Examples
a(4) counts these 3 partitions: 4, 22, 211.
Programs
-
Mathematica
Table[p = IntegerPartitions[n]; Length[Select[Table[Total[Select[DeleteDuplicates[p[[k]]], EvenQ]], {k, Length[p]}], # >= n/2 &]], {n, 54}]
Comments