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!)
A190106 Numbers with prime factorization p^2*q^3*r^3 where p, q, and r are distinct primes. 4
5400, 9000, 10584, 13500, 24696, 26136, 36504, 37044, 49000, 62424, 68600, 77976, 95832, 114264, 121000, 143748, 158184, 165375, 169000, 171500, 181656, 207576, 231525, 237276, 266200, 289000, 295704, 332024, 353736, 361000, 363096 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Will Nicholes, List of prime signatures, 2010.
FORMULA
Sum_{n>=1} 1/a(n) = P(2)*P(3)^2/2 - P(2)*P(6)/2 - P(3)*P(5) + P(8) = 0.00085907862422456410530..., where P is the prime zeta function. - Amiram Eldar, Mar 07 2024
MATHEMATICA
f[n_]:=Sort[Last/@FactorInteger[n]]=={2, 3, 3}; Select[Range[500000], f]
PROG
(PARI) list(lim)=my(v=List(), t1, t2); forprime(p=2, (lim\4)^(1/6), t1=p^3; forprime(q=p+1, (lim\t1)^(1/3), t2=t1*q^3; forprime(r=2, sqrt(lim\t2), if(p==r||q==r, next); listput(v, t2*r^2)))); vecsort(Vec(v)) \\ Charles R Greathouse IV, Jul 20 2011
CROSSREFS
Sequence in context: A328562 A340109 A364991 * A252572 A035902 A203711
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 11:21 EDT 2024. Contains 371936 sequences. (Running on oeis4.)