A273355 Numbers n such that n - 47, n - 1, n + 1, n + 47 are consecutive primes.
15370470, 15462870, 18216510, 23726160, 30637050, 31054740, 38907060, 39220080, 44499900, 44678190, 60563100, 66248550, 86219910, 87095190, 87948780, 93773970, 96802860, 103011990, 105953760, 105978330, 106960410, 111219990, 116281770
Offset: 1
Keywords
Examples
15370470 is the average of the four consecutive primes 15370423, 15370469, 15370471, 15370517. 15462870 is the average of the four consecutive primes 15462823, 15462869, 15462871, 15462917.
Links
- Karl V. Keller, Jr., Table of n, a(n) for n = 1..10000
- Eric Weisstein's World of Mathematics, Twin Primes
Programs
-
PARI
is(n)=isprime(n-1) && isprime(n+1) && precprime(n-2)==n-47 && nextprime(n+2)==n+47 \\ Charles R Greathouse IV, Jun 08 2016
-
Python
from sympy import isprime,prevprime,nextprime for i in range(0,160000001,6): if isprime(i-1) and isprime(i+1) and prevprime(i-1) == i-47 and nextprime(i+1) == i+47: print (i,end=', ')
Comments