A134266 Primes associated with the prime gaps listed in A085237.
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
Offset: 1
Keywords
Links
- Michel Planat and Patrick Solé, Improving Riemann prime counting, arXiv preprint arXiv:1410.1083 [math.NT], 2014.
Programs
-
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
Comments