A236214 Sum of the eighth powers of the first n primes.
256, 6817, 397442, 6162243, 220521124, 1036251845, 8012009286, 24995572327, 103306557608, 603552970569, 1456444008010, 4968923461931, 12953848691052, 24642048968653, 48453335630414, 110713026041775, 257543463646096, 449250776643377, 855318454200018
Offset: 1
Links
- Robert Price, Table of n, a(n) for n = 1..1000
- OEIS Wiki, Sums of powers of primes divisibility sequences
- Vladimir Shevelev, Asymptotics of sum of the first n primes with a remainder term
Crossrefs
Programs
-
Mathematica
Table[Sum[Prime[k]^8, {k, n}], {n, 1000}] Accumulate[Prime[Range[20]]^8] (* Harvey P. Dale, Feb 25 2016 *)
Formula
a(n) = Sum_{k=1..n} prime(k)^8.