A379989 Prime numbers on the x-axis of the Cartesian grid defined in A379643.
2, 3, 588065761, 588065801, 588067729, 588067793, 588067811, 588067849, 588067981, 588068773, 588068783, 588069121, 588069149, 588069173, 588069179, 588069203, 588069211, 588069259, 588069353, 588069367, 588069401, 588069403, 588069413, 588069431, 588069479
Offset: 1
Keywords
Links
- C. Bays and R. H. Hudson, Numerical and graphical description of all axis crossing regions for moduli 4 and 8 which occur before 10^12, International Journal of Mathematics and Mathematical Sciences, vol. 2, no. 1, pp. 111-119, 1979.
Programs
-
Python
from sympy import nextprime p, y = 2, 0; R = [p] while p < 588069479: p = nextprime(p); dy = (p%8-3)//2 if dy in {-1, 1}: y += dy if y == 0: R.append(p) print(*R, sep = ', ')
Comments