A309663 Primes that begin a run of consecutive primes whose first differences are nondecreasing.
2, 13, 19, 31, 41, 61, 71, 83, 101, 109, 131, 139, 151, 167, 181, 193, 199, 227, 241, 257, 271, 281, 311, 337, 349, 373, 383, 401, 421, 433, 443, 461, 487, 503, 523, 547, 563, 571, 593, 601, 617, 641, 661, 677, 709, 727, 743, 757, 773, 797, 811, 823, 829, 857
Offset: 1
Keywords
Examples
The first run is 2, 3, 5, 7, 11, thus the first value is 2; The second run is 13, 17, thus the second value is 13; The third run is 19, 23, 29, thus the third value is 19; The fourth run is 31, 37, thus the fourth value is 31.
Links
- Reddit blog, Found "e" in the primes (maybe), 2019.
Crossrefs
Same process as A331544 except this allows equal increases in the runs.
Programs
-
PARI
lista(nn) = {my(d=m=2); forprime(p=2, nn, if(p-m
Jinyuan Wang, Jul 09 2020
Extensions
More terms from Jinyuan Wang, Jul 09 2020
Comments