login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A273101 Numbers n such that n - 43, n - 1, n + 1, n + 43 are consecutive primes. 1

%I #16 Feb 20 2023 02:52:49

%S 7714800,8126820,8341260,8646060,9200880,9422970,13224270,13597920,

%T 14012460,14124630,15305700,17008680,17563920,18830940,22603740,

%U 22812150,24576240,25197300,26147040,26196900,26932950,27225240,30305580,31214640

%N Numbers n such that n - 43, n - 1, n + 1, n + 43 are consecutive primes.

%C This sequence is a subsequence of A014574 (average of twin prime pairs), A249674 (divisible by 30) and A256753.

%C The numbers n - 43 and n + 1 belong to A272176 (p and p + 44 are primes) and A134120 (p such that p + 42 is the next prime).

%C The numbers n - 43 and n - 1 belong to A271982 (p and p + 42 are primes).

%H Charles R Greathouse IV, <a href="/A273101/b273101.txt">Table of n, a(n) for n = 1..10000</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/TwinPrimes.html">Twin Primes</a>

%e 7714800 is the average of the four consecutive primes 7714757, 7714799, 7714801, 7714843.

%e 8126820 is the average of the four consecutive primes 8126777, 8126819, 8126821, 8126863.

%o (Python)

%o from sympy import isprime,prevprime,nextprime

%o for i in range(0,60000001,6):

%o ..if isprime(i-1) and isprime(i+1) and prevprime(i-1) == i-43 and nextprime(i+1) == i+43: print (i,end=', ')

%o (PARI) is(n)=n%30==0 && isprime(n-1) && isprime(n+1) && nextprime(n+2)==n+43 && precprime(n-2)==n-43 \\ _Charles R Greathouse IV_, May 15 2016

%Y Cf. A014574, A077800 (twin primes), A249674, A256753.

%K nonn

%O 1,1

%A _Karl V. Keller, Jr._, May 15 2016

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)