login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A236222
Sum of the fourteenth powers of the first n primes.
1
16384, 4799353, 6108314978, 684331387827, 380434164971068, 4317810550670357, 172695637110071286, 971702322892955407, 12564538647431705216, 310122771323231168697, 1067066706544027489018, 10079128002539035788707, 48008355197454594590868
OFFSET
1,1
FORMULA
a(n) = sum(k = 1 .. n, prime(k)^14).
MATHEMATICA
Table[Sum[Prime[k]^14, {k, n}], {n, 1000}]
Accumulate[Prime[Range[20]]^14] (* Harvey P. Dale, Nov 26 2014 *)
CROSSREFS
Cf. A085450 = smallest m > 1 such that m divides Sum_{k=1..m} prime(k)^n.
Sequence in context: A016903 A017692 A010802 * A269207 A016963 A224396
KEYWORD
nonn,easy,changed
AUTHOR
Robert Price, Jan 20 2014
STATUS
approved