OFFSET
1,1
COMMENTS
Products of two (not necessarily distinct) primes such that the product has an even number of 1's in its binary expansion. Non-evil semiprimes are odious (A000069).
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
E. Fouvry, C. Mauduit, Sommes des chiffres et nombres presque premiers, (French) [Sums of digits and almost primes] Math. Ann. 305 (1996), no. 3, 571--599. MR1397437 (97k:11029).
MATHEMATICA
Select[Range[300], PrimeOmega[#]==2&&EvenQ[DigitCount[#, 2, 1]]&] (* Harvey P. Dale, Nov 08 2011 *)
PROG
(PARI) list(lim)=my(v=List(), t); forprime(p=2, lim\2, forprime(q=2, min(p, lim\p), if(hammingweight(n=p*q)%2, , listput(v, n)))); vecsort(Vec(v)) \\ Charles R Greathouse IV, Mar 26 2013
CROSSREFS
KEYWORD
easy,base,nonn
AUTHOR
Jonathan Vos Post, Jun 16 2007
EXTENSIONS
Corrected (a(21)=129 added) by Harvey P. Dale, Nov 08 2011
STATUS
approved