OFFSET
1,5
EXAMPLE
a(6) = 6 because the even non-cototients not exceeding 64 are {10,26,34,50,52,58}.
MATHEMATICA
a = Table[0, {2^26}]; Do[ b = n - EulerPhi[n]; If[ EvenQ[b] && b < 2^27 + 1, a[[b/2]]++ ], {n, 2, 10^9}]; c = 0; k = 1; Do[While[k < 2^n, If[a[[k]] == 0, c++ ]; k++ ]; Print[c], {n, 1, 26}]
CROSSREFS
KEYWORD
hard,nonn
AUTHOR
Robert G. Wilson v, Jul 13 2002 and Jul 29 2002
EXTENSIONS
a(16) and a(21) corrected and a(28)-a(32) from Donovan Johnson, Jun 23 2010
a(33)-a(35) from Donovan Johnson, Jun 03 2013
STATUS
approved