A236216 Sum of the tenth powers of the first n primes.
1024, 60073, 9825698, 292300947, 26229725548, 164088217397, 2180082117846, 8311148375647, 49737659589296, 470444892889497, 1290073179870298, 6098657552288147, 19521316862440548, 41132799175724797, 93731931411554846, 268619401777067895, 779736155077709296
Offset: 1
Links
- Robert Price, Table of n, a(n) for n = 1..1000
- OEIS Wiki, Sums of powers of primes divisibility sequences
- V. Shevelev, Asymptotics of sum of the first n primes with a remainder term
Crossrefs
Programs
-
Mathematica
Table[Sum[Prime[k]^10, {k, n}], {n, 1000}]
Formula
a(n) = Sum_{k=1..n} prime(k)^10.