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!)
A233265 Prime(k), where k is such that (1 + Sum_{j=1..k} prime(j)^12) / k is an integer. 1
2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 37, 41, 43, 47, 53, 61, 71, 73, 89, 101, 103, 107, 113, 149, 151, 167, 173, 181, 197, 199, 223, 239, 251, 263, 281, 307, 313, 317, 349, 359, 397, 409, 433, 449, 463, 467, 541, 569, 571, 613, 643, 659, 701, 733, 787, 809 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(1171) > 661876608760109. - Bruce Garner, Jun 06 2021
LINKS
Bruce Garner, Table of n, a(n) for n = 1..1170 (terms 1..907 from Robert Price, terms 908..967 from Karl-Heinz Hofmann)
EXAMPLE
a(4) = 7, because 7 is the 4th prime and (1 + Sum_{i=1..4} prime(i)^12) / 4 = 14085963364/4 = 3521490841 which is an integer.
MAPLE
A233265:=n->if type((1+add(ithprime(i)^12, i=1..n))/n, integer) then ithprime(n); fi; seq(A233265(k), k=1..200); # Wesley Ivan Hurt, Dec 06 2013
MATHEMATICA
t = {}; sm = 1; Do[sm = sm + Prime[n]^12; If[Mod[sm, n] == 0, AppendTo[t, Prime[n]]], {n, 100000}]; t (* Derived from A217599 *)
Prime[#]&/@(Flatten[Position[#[[1]]/#[[2]]&/@With[{nn=200}, Thread[ {(Rest[ FoldList[ Plus, 0, Prime[Range[nn]]^12]])+1, Range[nn]}]], _?IntegerQ]]) (* Harvey P. Dale, Nov 19 2018 *)
PROG
(PARI) is(n)=if(!isprime(n), return(0)); my(t=primepi(n), s); forprime(p=2, n, s+=Mod(p, t)^12); s==0 \\ Charles R Greathouse IV, Nov 30 2013
CROSSREFS
Cf. A085450 (smallest m > 1 such that m divides Sum_{k=1..m} prime(k)^n).
Sequence in context: A095323 A100370 A233393 * A095319 A129621 A316504
KEYWORD
nonn
AUTHOR
Robert Price, Dec 06 2013
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 29 00:29 EDT 2024. Contains 372921 sequences. (Running on oeis4.)