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.

A236214 Sum of the eighth powers of the first n primes.

Original entry on oeis.org

256, 6817, 397442, 6162243, 220521124, 1036251845, 8012009286, 24995572327, 103306557608, 603552970569, 1456444008010, 4968923461931, 12953848691052, 24642048968653, 48453335630414, 110713026041775, 257543463646096, 449250776643377, 855318454200018
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 A179645.

Programs

  • Mathematica
    Table[Sum[Prime[k]^8, {k, n}], {n, 1000}]
    Accumulate[Prime[Range[20]]^8] (* Harvey P. Dale, Feb 25 2016 *)

Formula

a(n) = Sum_{k=1..n} prime(k)^8.