OFFSET
1,1
LINKS
Robert Price, Table of n, a(n) for n = 1..1000
FORMULA
a(n) = Sum_{k=1..n} prime(k)^11.
MATHEMATICA
Table[Sum[Prime[k]^11, {k, n}], {n, 1000}]
Accumulate[Prime[Range[20]]^11] (* This program is several hundred times faster than the first program, above, in calculating the first 1000 terms of the sequence. *) (* Harvey P. Dale, Sep 17 2023 *)
PROG
(PARI) s=[]; for(n=1, 15, s=concat(s, sum(i=1, n, prime(i)^11))); s \\ Colin Barker, Jan 20 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Robert Price, Jan 20 2014
STATUS
approved