login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A230353
Products of 3 evil primes (A027699) p,q,r, such that numbers p*q, p*r, q*r, and p*q*r are odious (A000069).
2
575, 1775, 2075, 2225, 2825, 3475, 6575, 8381, 8675, 8825, 8975, 8993, 10235, 11225, 11675, 11975, 12035, 12167, 12905, 13075, 14275, 14825, 18745, 19925, 21575, 22881, 23943, 24389, 25325, 25775, 26765, 27575, 30189, 30925, 30981, 31433, 32223, 32675, 32975
OFFSET
1,1
COMMENTS
These numbers are products of 3 evil numbers (A001969) but not represented as products of two evil numbers (A230213).
LINKS
Charles R Greathouse IV and Peter J. C. Moses, Table of n, a(n) for n = 1..10000 (first 500 from Moses)
EXAMPLE
For triple of evil primes {3,29,263} numbers 3*29 = 87, 3*263 = 789, 29*263 = 7627 and 3*29*263 = 22881. Thus 22881 is in the sequence.
PROG
(PARI) od(n)=hammingweight(n)%2
list(lim)=my(v=List(), pq); forprime(p=23, lim\25, if(od(p), next); forprime(q=5, min(lim\(3*p), p), if(od(q) || !od(pq=p*q), next); forprime(r=3, min(lim\pq, q), if(!od(r) && od(q*r) && od(p*r) && od(pq*r), listput(v, pq*r))))); vecsort(Vec(v)) \\ Charles R Greathouse IV, Nov 01 2013
CROSSREFS
KEYWORD
nonn,base
AUTHOR
STATUS
approved