cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A236222 Sum of the fourteenth powers of the first n primes.

Original entry on oeis.org

16384, 4799353, 6108314978, 684331387827, 380434164971068, 4317810550670357, 172695637110071286, 971702322892955407, 12564538647431705216, 310122771323231168697, 1067066706544027489018, 10079128002539035788707, 48008355197454594590868
Offset: 1

Views

Author

Robert Price, Jan 20 2014

Keywords

Crossrefs

Cf. A085450 = smallest m > 1 such that m divides Sum_{k=1..m} prime(k)^n.

Programs

  • Mathematica
    Table[Sum[Prime[k]^14, {k, n}], {n, 1000}]
    Accumulate[Prime[Range[20]]^14] (* Harvey P. Dale, Nov 26 2014 *)

Formula

a(n) = sum(k = 1 .. n, prime(k)^14).