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!)
A179689 Numbers with prime signature {7,2}, i.e., of form p^7*q^2 with p and q prime. 7
1152, 3200, 6272, 8748, 15488, 21632, 36992, 46208, 54675, 67712, 107163, 107648, 123008, 175232, 215168, 236672, 264627, 282752, 312500, 359552, 369603, 445568, 476288, 574592, 632043, 645248, 682112, 703125, 789507, 798848, 881792, 1013888 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Will Nicholes, Prime Signatures
FORMULA
Sum_{n>=1} 1/a(n) = P(2)*P(7) - P(9) = A085548 * A085967 - A085969 = 0.001741..., where P is the prime zeta function. - Amiram Eldar, Jul 06 2020
MAPLE
a:= proc(n) option remember; local k;
for k from 1+ `if` (n=1, 1, a(n-1))
while sort (map (x-> x[2], ifactors(k)[2]), `>`)<>[7, 2]
do od; k
end:
seq (a(n), n=1..32); # Alois P. Heinz, Jan 23 2011
MATHEMATICA
f[n_]:=Sort[Last/@FactorInteger[n]]=={2, 7}; Select[Range[10^6], f]
PROG
(PARI) list(lim)=my(v=List(), t); forprime(p=2, (lim\4)^(1/7), t=p^7; forprime(q=2, sqrt(lim\t), if(p==q, next); listput(v, t*q^2))); vecsort(Vec(v)) \\ Charles R Greathouse IV, Jul 20 2011
CROSSREFS
Sequence in context: A114046 A035888 A252438 * A131527 A229590 A269216
KEYWORD
nonn
AUTHOR
EXTENSIONS
Title edited by Daniel Forgues, Jan 22 2011
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 August 3 16:56 EDT 2024. Contains 374894 sequences. (Running on oeis4.)