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!)
A251623 Primes p with property that the sum of the 4th powers of the successive gaps between primes <= p is a prime number. 3

%I #37 May 01 2021 11:41:49

%S 5,19,29,41,61,67,83,89,103,113,167,179,229,263,281,283,307,317,359,

%T 461,467,509,563,571,613,739,743,761,1019,1031,1051,1093,1229,1291,

%U 1297,1319,1409,1447,1609,1621,1667,1747,1801,1877,1979,2113,2137,2161

%N Primes p with property that the sum of the 4th powers of the successive gaps between primes <= p is a prime number.

%H Abhiram R Devesh, <a href="/A251623/b251623.txt">Table of n, a(n) for n = 1..1000</a>

%e a(1)=5; primes less than or equal to 5: [2, 3, 5]; 4th power of prime gaps: [1, 16]; sum of 4th power of prime gaps: 17.

%e a(2)=19; primes less than or equal to 13: [2, 3, 5, 7, 11, 13, 17, 19]; 4th powers of prime gaps (see A140299): [1, 16, 16, 256, 16, 256, 16]; sum of these: 577.

%t p = 2; q = 3; s = 0; lst = {}; While[p < 2500, s = s + (q - p)^4; If[ PrimeQ@ s, AppendTo[lst, q]]; p = q; q = NextPrime@ q]; lst (* _Robert G. Wilson v_, Dec 19 2014 *)

%o (Python)

%o import sympy

%o p=2

%o s=0

%o while 10000>p>0:

%o np=sympy.nextprime(p)

%o if sympy.isprime(s):

%o print(p)

%o d=np-p

%o s+=(d**4)

%o p=np

%o (PARI) p = 2; q = 3; s = 1; for (i = 1, 100, p = q; q = nextprime (q + 1); if (isprime (s = s + (q - p)^4), print1 (q ", "))) \\ _Zak Seidov_, Jan 19 2015

%Y Cf. A006512 (with gaps), A247177 (with squares of gaps), A247178 (with cubes of gaps).

%K nonn,easy

%O 1,1

%A _Abhiram R Devesh_, Dec 06 2014

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 24 06:06 EDT 2024. Contains 371918 sequences. (Running on oeis4.)