A331544 Primes that begin a run of consecutive primes whose first differences are strictly increasing.
2, 7, 13, 19, 31, 41, 59, 71, 83, 101, 109, 131, 139, 151, 163, 179, 193, 199, 223, 229, 241, 257, 269, 281, 311, 337, 349, 373, 383, 401, 421, 433, 443, 461, 487, 503, 523, 547, 563, 571, 593, 601, 613, 619, 641, 659, 677, 709, 727, 739, 757, 773, 797, 811, 823
Offset: 1
Keywords
Examples
The first run is 2, 3, 5, thus the first value is 2; the second run is 7, 11, thus the second value is 7; the third run is 13, 17, thus the third value is 13; the fourth run is 19, 23, 29, thus the fourth value is 19.
Links
- Reddit blog, Found "e" in the primes (maybe), 2019.
Crossrefs
Cf. A309663.
Programs
-
PARI
lista(nn) = {my(m=2, d=0); forprime(p=2, nn, if(p-m>d, d=p-m, d=0; print1(p, ", ")); m=p); } \\ Jinyuan Wang, Jan 21 2020
Extensions
More terms from Jinyuan Wang, Jan 21 2020
Comments