OFFSET
1,1
COMMENTS
Prime numbers on the y-axis of the Cartesian grid defined in A379643.
Conjecture: There is no prime on the negative y-axis of the Cartesian grid defined in A379643, meaning that prime p does not exist such that pi_{8,3}(p) - pi_{8,7}(p) = 0 and pi_{8,5}(p) - pi_{8,1}(p) < 0, where pi_{m,b}(x) is the number of primes <= x which are congruent to b (mod m).
PROG
(Python)
from sympy import nextprime; p, x = 2, 0; R = [p]
while p < 1249:
p = nextprime(p); d = (5-p%8)//2
if d in {-1, 1}: x += d
if x == 0: R.append(p)
print(*R, sep = ', ')
CROSSREFS
KEYWORD
nonn
AUTHOR
Ya-Ping Lu, Jan 21 2025
STATUS
approved