A236227 Sum of the nineteenth powers of the first n primes.
524288, 1162785755, 19074649113880, 11417969834487023, 61170508418249033314, 1523090798793695143991, 240595526483945019991144, 2219015182144258609115123, 76834486109734969171023610, 6180095732699726458749873279, 27850757952670122653464150750
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]^19, {k, n}], {n, 1000}]
Formula
a(n) = sum(k = 1 .. n, prime(k)^19).