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!)
A134266 Primes associated with the prime gaps listed in A085237. 5
2, 3, 5, 7, 13, 19, 23, 31, 47, 53, 61, 73, 83, 89, 113, 293, 317, 523, 887, 1129, 1327, 8467, 9551, 12853, 14107, 15683, 19609, 25471, 31397, 155921, 338033, 360653, 370261, 492113, 1349533, 1357201, 1561919, 2010733, 4652353, 11113933, 15203977, 17051707, 20831323, 47326693, 122164747, 189695659, 191912783 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The smallest prime p(n) such that p(n+1)-p(n) is nondecreasing. The smallest prime p(n) such that (p(n+1)/p(n))^p(n) is increasing. [Thomas Ordowski, May 26 2012]
a(n) is the last prime in the n-th sublist of prime numbers defined in A348178. - Ya-Ping Lu, Oct 19 2021
LINKS
Michel Planat and Patrick Solé, Improving Riemann prime counting, arXiv preprint arXiv:1410.1083 [math.NT], 2014.
FORMULA
a(n) = A000040(A085500(n)). - M. F. Hasler, Apr 26 2014
PROG
(Python)
from sympy import nextprime; p, r = 2, 0
while p < 2*10**8:
q = nextprime(p); g = q - p
if g >= r: print(p, end = ', '); r = g
p = q # Ya-Ping Lu, Jan 23 2024
CROSSREFS
See also A205827(n) = A000040(A214935(n)), A182514(n) = A000040(A241540(n)).
Cf. A348178.
Sequence in context: A038917 A124661 A319126 * A233043 A231099 A062252
KEYWORD
nonn
AUTHOR
David W. Wilson, Dec 31 2007
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 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)