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
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
KEYWORD
nonn
AUTHOR
David W. Wilson, Dec 31 2007
STATUS
approved