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!)
A089577 a(n) = r-th prime of the form (p-q)/(q-r) with r=prime(n+1), q=prime(n+2), and primes p > q. 1
13, 17, 47, 107, 179, 311, 401, 199, 761, 367, 1229, 1049, 1499, 701, 739, 1979, 1069, 2543, 2399, 1447, 3209, 1619, 4889, 4583, 4373, 4703, 4451, 5351, 5669, 6329, 2749, 6491, 5309, 7433, 4159, 3613, 8693, 4001, 3823, 9311, 7757, 10343, 11789, 10559, 5231, 6323, 14033, 12539, 14627, 6163, 13619, 12107, 7477, 7621, 7433, 15461, 7451, 17957, 16073, 14057, 18743, 20543, 19763, 22679, 20543, 10289 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Original definition: First occurrence of the first k-th occurrence where (p-q)/(q-k), p,q,k are primes.
From the original definition and program (which gives different results depending on the upper limit n) it is not obvious, but for any odd prime r, a solution will always be found for q=nextprime(r+1), by considering the r-th prime of the form p=q+(q-r)*prime(i), i=1,2,3... - M. F. Hasler, Apr 05 2009
LINKS
EXAMPLE
For the first odd prime r=3 and its successor prime q=5, (p-q)/(q-r) is prime for p=11, 19, 31, ... and the (r=3)-rd ratio is (31-5)/(5-3)=13=a(1). - M. F. Hasler, Apr 05 2009
PROG
(PARI) diff2sqp2(n, r, d) = { forprime(q=d+1, n, c=0; forprime(p=q+1, n, y=(p-q)/(q-d); if(y==floor(y), if(isprime(y), c++; if(c==r, print1(y", "); break)) ) ) ) } diff2sqp3(n) = { forprime(k=3, n, diff2sqp2(n, k, k); print(); ) }
(PARI) A089577(n) = { local( q=prime(n+2), r=prime(n+1), d=q-r, y=1); until( isprime( q+d*y=nextprime(y+1)) & ! r--, ) ; y} \\ M. F. Hasler, Apr 05 2009
CROSSREFS
Sequence in context: A140533 A180527 A076789 * A356079 A214393 A060569
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, Dec 29 2003
EXTENSIONS
Corrected, extended and edited by M. F. Hasler, Apr 05 2009
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 May 2 16:46 EDT 2024. Contains 372197 sequences. (Running on oeis4.)