A361723 Numbers k such that there are 18 primes between 100*k and 100*k + 99.
1228537713709, 23352869714018, 28703237474266, 144785865481702, 161394923966449, 168975708209638, 174748809066898, 207552241231357, 278215179205531, 312303328909720, 592248982143877, 812939886634531, 939100782752014, 983930290209021, 1111161494544274
Offset: 1
Keywords
Examples
1228537713709 is in the sequence because there are 18 primes between 122853771370900 and 122853771370999: 122853771370900 + x, where x is one of (1, 3, 7, 19, 21, 27, 31, 33, 37, 49, 51, 61, 69, 73, 87, 91, 97, or 99).
Links
- Brian Kehrig, Table of n, a(n) for n = 1..39 (terms up to 10^16)
- Note (Apr 24 2024): An older version of the b-file missed a(33) and a(38). The present b-file is correct.
Crossrefs
Programs
-
PARI
isok(k) = sum(i=0, 99, isprime(100*k + i)) == 18; \\ Michel Marcus, Mar 23 2023
Comments