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!)
A111325 Numbers k such that 11 divides prime(1)+...+prime(k). 1
8, 17, 53, 69, 76, 84, 87, 91, 167, 175, 179, 181, 188, 196, 201, 217, 219, 224, 240, 260, 275, 297, 312, 317, 319, 324, 340, 346, 376, 382, 386, 393, 417, 470, 503, 514, 526, 528, 542, 550, 562, 564, 584, 590, 607, 613, 615, 629, 637, 649, 691, 693, 732, 749, 752, 759 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
PROG
(Python)
from sympy import nextprime
def aupto(limit):
p, s, alst = 2, 2, []
for k in range(1, limit+1):
if s == 0: alst.append(k)
p = nextprime(p); s = (s + p)%11
return alst
print(aupto(759)) # Michael S. Branicky, Aug 17 2021
CROSSREFS
Cf. A007504.
Sequence in context: A048695 A329768 A153873 * A173056 A008782 A146078
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Nov 05 2005
STATUS
approved

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 May 6 15:21 EDT 2024. Contains 372294 sequences. (Running on oeis4.)