A236226 Sum of the eighteenth powers of the first n primes.
262144, 387682633, 3815084948258, 1632228682858707, 5561549542175090188, 118016956494132483317, 14181101408561857474326, 118308451706473099007167, 3362459361601721384307536, 213819743726773841714612697, 912873363725818880253782938
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]^18, {k, n}], {n, 1000}] Accumulate[Prime[Range[20]]^18] (* Harvey P. Dale, Jul 08 2024 *)
Formula
a(n) = sum(k = 1 .. n, prime(k)^18).
Comments