login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A092062
Numbers k such that A061015(k) is prime.
1
2, 10, 18, 36, 90, 759
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
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