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!)
A233132 Prime(k), where k is such that (Sum_{i=1..k} prime(i)^10) / k is an integer. 1
2, 1723, 504017, 707602177, 3221410523, 50872396681, 502768196591, 809590307027, 7067369025727, 67826487302603, 8107773185261209 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(11) > 80562077557177. - Bruce Garner, Mar 06 2021
LINKS
FORMULA
a(n) = prime(A131264(n))
EXAMPLE
a(2) = 1723, because 1723 is the 269th prime and the sum of the first 269 primes^10 = 5093580907935902678630090684087692 when divided by 269 equals 18935245010914136351784723732668 which is an integer.
MATHEMATICA
t = {}; sm = 0; Do[sm = sm + Prime[n]^10; If[Mod[sm, n] == 0, AppendTo[t, Prime[n]]], {n, 100000}]; t (* Derived from A217599 *)
PROG
(PARI) is(n)=if(!isprime(n), return(0)); my(t=primepi(n), s); forprime(p=2, n, s+=Mod(p, t)^10); s==0 \\ Charles R Greathouse IV, Nov 30 2013
(PARI) S=n=0; forprime(p=1, , (S+=p^10)%n++||print1(p", ")) \\ M. F. Hasler, Dec 01 2013
CROSSREFS
Cf. A085450 (smallest m > 1 such that m divides Sum_{k=1..m} prime(k)^n).
Sequence in context: A179961 A160224 A129061 * A277389 A011541 A080642
KEYWORD
nonn,more
AUTHOR
Robert Price, Dec 04 2013
EXTENSIONS
a(9)-a(10) from Bruce Garner, Mar 06 2021
a(11) from Paul W. Dyson, Jul 09 2023
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 April 18 13:50 EDT 2024. Contains 371780 sequences. (Running on oeis4.)