A248661 Initial members of prime quadruples (n, n+2, n+54, n+56).
5, 17, 137, 227, 827, 1427, 1667, 1877, 2027, 2087, 2657, 3527, 3767, 4217, 4967, 10037, 11117, 11777, 12107, 13877, 17987, 19697, 20717, 21557, 22037, 23687, 24977, 27527, 27737, 34157, 37307, 41177, 42017, 42407, 47657, 48677
Offset: 1
Keywords
Examples
For n=17, the numbers 17, 19, 71, 73, are primes.
Links
- Karl V. Keller, Jr., Table of n, a(n) for n = 1..100000
- Eric Weisstein's World of Mathematics, Prime Quadruplet.
- Eric Weisstein's World of Mathematics, Twin Primes
- Wikipedia, Twin prime
Programs
-
Python
from sympy import isprime for n in range(1,10000001,2): if isprime(n) and isprime(n+2) and isprime(n+54) and isprime(n+56): print(n,end=', ')
Comments