login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A179642 Product of exactly 5 primes, 3 of which are distinct. 10
120, 168, 180, 252, 264, 270, 280, 300, 312, 378, 396, 408, 440, 450, 456, 468, 520, 552, 588, 594, 612, 616, 680, 684, 696, 700, 702, 728, 744, 750, 760, 828, 882, 888, 918, 920, 945, 952, 980, 984, 1026, 1032, 1044, 1064, 1100, 1116, 1128, 1144, 1160 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Will Nicholes, Prime Signatures
EXAMPLE
120=2^3*3*5, 168=2^3*3*7, 180=2^2*3^2*5, 252=2^2*3^2*7, 264=2^3*3*11, 270=2*3^3*5
MATHEMATICA
f[n_]:=Sort[Last/@FactorInteger[n]]=={1, 1, 3} || Sort[Last/@FactorInteger[n]]=={1, 2, 2}; Select[Range[2000], f]
PROG
(PARI) list(lim)=my(v=List(), t); forprime(p=2, (lim\6)^(1/3), forprime(q=2, sqrt(lim\p^3), if(p==q, next); t=p^3*q; forprime(r=q+1, lim\t, if(p==r, next); listput(v, t*r)))); forprime(p=2, sqrt(lim\12), forprime(q=p+1, sqrt(lim\p^2\2), t=(p*q)^2; forprime(r=2, lim\t, if(p==r||q==r, next); listput(v, t*r)))); vecsort(Vec(v)) \\ Charles R Greathouse IV, Jul 19 2011
CROSSREFS
Union of A189975 and A179643.
Sequence in context: A034291 A039602 A316835 * A099832 A111399 A030634
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)