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!)
A352424 Numbers that can be written as sums of squares of consecutive primes in two ways. 1

%I #18 Apr 18 2024 06:11:00

%S 14720439,16535628,34714710,40741208,61436388,603346308,1172360113,

%T 1368156941,1574100889,1924496102,1989253499,2021860243,6774546339,

%U 9770541610,12230855963,12311606487,12540842446,14513723777,26423329489,38648724198,47638558043,50195886916,50811319931,56449248367

%N Numbers that can be written as sums of squares of consecutive primes in two ways.

%H Michael S. Branicky, <a href="/A352424/b352424.txt">Table of n, a(n) for n = 1..991</a>

%H Cathal O'Sullivan, Jonathan P. Sorenson, and Aryn Stahl, <a href="https://arxiv.org/abs/2204.10930">An Algorithm to Find Sums of Consecutive Powers of Primes</a>, arXiv:2204.10930 [math.NT], 2022-2023. See 4.2 Duplicates p. 8-9.

%H Michael S. Branicky, <a href="/A352424/a352424.py.txt">Python Program</a>

%o (Python) # see link for a version suitable for producing b-file

%o from sympy import primerange, integer_nthroot

%o def aupto(limit):

%o adict = dict()

%o rootlimit = integer_nthroot(limit, 2)[0]

%o for x in primerange(2, rootlimit+1):

%o s = x**2

%o adict[s] = 1

%o for y in primerange(x+1, rootlimit+1):

%o s += y**2

%o if s <= limit:

%o if s not in adict:

%o adict[s] = 1

%o else:

%o adict[s] += 1

%o else:

%o break

%o return sorted(s for s in adict if adict[s] == 2)

%o print(aupto(6*10**10)) # _Michael S. Branicky_, Apr 26 2022

%Y Cf. A001248, A340771.

%K nonn

%O 1,1

%A _Michel Marcus_, Apr 26 2022

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 September 17 22:44 EDT 2024. Contains 375991 sequences. (Running on oeis4.)