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!)
A092062 Numbers k such that A061015(k) is prime. 1
2, 10, 18, 36, 90, 759 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(6) > 447 for a(6) the numerator has more than 2673 digits.
a(7) > 1850. - Michael S. Branicky, Jun 27 2022
LINKS
FORMULA
Numbers k such that numerator of (Sum_{i=1..k} 1/prime(i)^2) is prime
EXAMPLE
1/2^2 = 1/4 but 1 is not prime, 1/2^2 + 1/3^2 = 13/36 and 13 is prime so a(1)=2.
PROG
(PARI) sm(n)= s=0; for(i=1, n, s=s+1/(prime(i)^2)); return(s);
for (i=1, 400, if(isprime(numerator(sm(i))), print1(i, ", ")))
(Python) # uses A061015gen() and imports from A061015
from sympy import isprime
def agen():
yield from (k for k, ak in enumerate(A061015gen(), 1) if isprime(ak))
print(list(islice(agen(), 5))) # Michael S. Branicky, Jun 27 2022
CROSSREFS
Cf. A061015.
Sequence in context: A082969 A173592 A018227 * A271786 A134251 A317714
KEYWORD
hard,nonn
AUTHOR
Mohammed Bouayoun (mohammed.bouayoun(AT)sanef.com), Feb 20 2004
EXTENSIONS
a(6) from Alexander Adamchuk, Sep 16 2010
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 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)