A236215 Sum of the ninth powers of the first n primes.
512, 20195, 1973320, 42326927, 2400274618, 13004773991, 131592650488, 454280348267, 2255433009730, 16762578985599, 43202201146270, 173163940941347, 500545875335308, 1003138487272151, 2122268960374918, 5422032552177051, 14085028370831990, 25779174463666131
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]^9, {k, n}], {n, 1000}] Accumulate[Prime[Range[20]]^9] (* Harvey P. Dale, Jul 01 2015 *)
Formula
a(n) = Sum_{k=1..n} prime(k)^9.