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.

A236224 Sum of the sixteenth powers of the first n primes.

Original entry on oeis.org

65536, 43112257, 152631002882, 33385561572483, 45983115425144644, 711399724608324485, 49372591600275192966, 337814005167896360647, 6470424420848895009608, 256716898101196243797129, 984140019848381507625610, 13321651934065547869899851
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.
Partial sums of A030635.

Programs

  • Mathematica
    Table[Sum[Prime[k]^16, {k, n}], {n, 1000}]

Formula

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