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”).

A179688
Numbers of the form p^3*q^3*r where p, q, and r are prime.
8
1080, 1512, 2376, 2808, 3000, 3672, 4104, 4968, 6264, 6696, 6750, 7000, 7992, 8232, 8856, 9288, 10152, 11000, 11448, 12744, 13000, 13176, 13720, 14472, 15336, 15768, 17000, 17064, 17928, 18522, 19000, 19224, 20952, 21816, 22248, 23000, 23112
OFFSET
1,1
MATHEMATICA
f[n_]:=Sort[Last/@FactorInteger[n]]=={1, 3, 3}; Select[Range[20000], f]
PROG
(PARI) list(lim)=my(v=List(), t1, t2); forprime(p=2, (lim\2)^(1/6), t1=p^3; forprime(q=p+1, (lim\t1)^(1/3), t2=t1*q^3; forprime(r=2, lim\t2, if(p==r||q==r, next); listput(v, t2*r)))); vecsort(Vec(v)) \\ Charles R Greathouse IV, Jul 20 2011
CROSSREFS
Sequence in context: A351672 A163562 A214621 * A159210 A250538 A281259
KEYWORD
nonn
AUTHOR
STATUS
approved