[go: up one dir, main page]

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”).

A094663
Prime numerators of the sums of the ratios of consecutive primes.
1
2, 19, 3023, 3469898586979325623, 2502544963063007045084611872632077
OFFSET
1,1
COMMENTS
The next term is too large to include.
Prime terms of A091852.
Sum of reciprocals = 0.5577902661277818841795751911...
LINKS
EXAMPLE
3023 is a term since 2/3 + 3/5 + 5/7 + 7/11 = 3023/1155 and 3023 is prime.
MATHEMATICA
Select[Numerator/@Accumulate[First[#]/Last[#]&/@ Partition[Prime[ Range[50]], 2, 1]], PrimeQ] (* Harvey P. Dale, Apr 23 2011 *)
PROG
(PARI) consecpr2(n) = {my(s=0, y=0, z); forprime(x=2, n, y+=x/nextprime(x+1); z=numerator(y); s+=1./z; if(isprime(z), print1(z", ")) ); print(); print(s) }
CROSSREFS
Cf. A091852.
Sequence in context: A172028 A365050 A024229 * A274762 A091688 A306207
KEYWORD
nonn
AUTHOR
Cino Hilliard, Jun 06 2004
EXTENSIONS
Offset corrected by Amiram Eldar, Jun 26 2024
STATUS
approved