[go: up one dir, main page]

login
A179669
Products of form p^4*q^2*r where p, q and r are three distinct primes.
9
720, 1008, 1200, 1584, 1620, 1872, 2268, 2352, 2448, 2736, 2800, 3312, 3564, 3920, 4050, 4176, 4212, 4400, 4464, 5200, 5328, 5508, 5808, 5904, 6156, 6192, 6768, 6800, 7452, 7500, 7600, 7632, 7938, 8112, 8496, 8624, 8784, 9200, 9396, 9648, 9680, 10044
OFFSET
1,1
MATHEMATICA
f[n_]:=Sort[Last/@FactorInteger[n]]=={1, 2, 4}; Select[Range[10000], f]
PROG
(PARI) list(lim)=my(v=List(), t1, t2); forprime(p=2, (lim\12)^(1/4), t1=p^4; forprime(q=2, sqrt(lim\t1), if(p==q, next); t2=t1*q^2; 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
Cf. A137493.
Sequence in context: A337036 A257416 A137493 * A067808 A302127 A291804
KEYWORD
nonn
AUTHOR
STATUS
approved