OFFSET
0,4
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..800
EXAMPLE
Among the 22 partitions of 8, these qualify: [8], [7,1], [6,2], [6,1,1], [5,3], [5,2,1], [4,3,1], [4,2,2], [4,2,1,1], [3,3,2], [3,2,2,1], [3,2,1,1,1], and the remaining 10 do not, so that a(8) = 12.
MATHEMATICA
z = 50; t = Map[Length[Select[IntegerPartitions[#], 2*Length[DeleteDuplicates[#]] <= Length[#] &]] &, Range[z]] (*A237363*)
Table[PartitionsP[n] - t[[n]], {n, 1, z}] (*A237365*) (* Peter J. C. Moses, Feb 06 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Feb 06 2014
STATUS
approved