The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A233193 Numbers k such that k divides 1 + Sum_{j=1..k} prime(j)^11. 1
1, 2, 4, 5, 6, 10, 12, 17, 22, 45, 87, 217, 546, 17806, 41850, 127973, 189586, 435067, 475810, 595932, 3319478, 3737221, 5741156, 7349730, 7473734, 13114674, 26076896, 48515830, 48791555, 419983404, 2217443166, 2617207503, 2894318150, 8776851351, 118596802796 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(47) > 3*10^13. - Bruce Garner, Jun 05 2021
LINKS
EXAMPLE
a(5)=6 because 1 plus the sum of the first 6 primes^11 is 2079498398712 which is divisible by 6.
MATHEMATICA
p = 2; k = 0; s = 1; lst = {}; While[k < 41000000000, s = s + p^11; If[Mod[s, ++k] == 0, AppendTo[lst, k]; Print[{k, p}]]; p = NextPrime@ p] (* derived from A128169 *)
With[{nn = 5*10^7}, Select[Thread[{Accumulate[ Prime[ Range[nn]]^11] + 1, Range[nn]}], Divisible[#[[1]], #[[2]]] &][[All, 2]]] (* The program generates the first 29 terms of the sequence. To generate all 34, change the value of nn to 878*10^7, but the program will take a long time to run. *) (* Harvey P. Dale, Mar 09 2017 *)
CROSSREFS
Cf. A085450 (smallest m > 1 such that m divides Sum_{k=1..m} prime(k)^n).
Sequence in context: A128167 A364214 A162534 * A177911 A127092 A128171
KEYWORD
nonn
AUTHOR
Robert Price, Dec 05 2013
EXTENSIONS
a(35) from Karl-Heinz Hofmann, Mar 07 2021
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 13 13:35 EDT 2024. Contains 372519 sequences. (Running on oeis4.)