A287550 Initial prime in set of 4 consecutive primes in arithmetic progression with difference 72.
491525857, 1470227987, 2834347387, 4314407477, 4766711387, 6401372837, 6871241197, 8971400797, 10168905497, 11776429517, 11871902557, 14538547967, 14925896087, 15218517367, 15646776877, 15875854927, 17310026197, 17942416307, 18347931587, 19241492057, 19379888947
Offset: 1
Keywords
Links
- Chai Wah Wu, Table of n, a(n) for n = 1..100
Crossrefs
Programs
-
Python
from gmpy2 import is_prime, next_prime A287550_list, p = [], 2 q, r, s = p+72, p+144, p+216 while s <= 10**10: np = next_prime(p) if np == q and is_prime(r) and is_prime(s) and next_prime(q) == r and next_prime(r) == s: A287550_list.append(p) p, q, r, s = np, np+72, np+144, np+216 # Chai Wah Wu, Jun 03 2017
Extensions
a(8)-a(21) from Chai Wah Wu, Jun 03 2017
Comments