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!)
A094663 Prime numerators of the sums of the ratios of consecutive primes. 0
2, 19, 3023, 3469898586979325623, 2502544963063007045084611872632077 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
Sum of reciprocals = 0.5577902661277818841795751911..
LINKS
FORMULA
If a(n) = Sum(prime(k)/prime(k+1), k=1..n)) is prime.
EXAMPLE
2/3 + 3/5 +5/7 + 7/11 = 3023/1155. 3023 is prime, the third entry in the sequence.
MATHEMATICA
Select[Numerator/@Accumulate[First[#]/Last[#]&/@ Partition[Prime[ Range[50]], 2, 1]], PrimeQ] (* Harvey P. Dale, Apr 23 2011 *)
PROG
(PARI) consecpr2(n) = { s=0; y=0; forprime(x=2, n, y+=x/nextprime(x+1); z=numerator(y); s+=1./z; if(isprime(z), print1(z", ")) ); print(); print(s) }
CROSSREFS
Sequence in context: A172028 A365050 A024229 * A274762 A091688 A306207
KEYWORD
frac,nonn
AUTHOR
Cino Hilliard, Jun 06 2004
EXTENSIONS
The next term is too large to include.
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 16 00:00 EDT 2024. Contains 371696 sequences. (Running on oeis4.)