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.

A236182 Sum of the sixth powers of the first n primes.

Original entry on oeis.org

64, 793, 16418, 134067, 1905628, 6732437, 30870006, 77915887, 225951776, 820775097, 1708278778, 4274005187, 9024109428, 15345472477, 26124687806, 48289048935, 90469582576, 141989956937, 232448339106, 360548623027, 511882849316, 754970304837, 1081910678206
Offset: 1

Views

Author

Robert Price, Jan 19 2014

Keywords

Crossrefs

Cf. A030516 (6th powers of primes).
Cf. A085450 (smallest m > 1 such that m divides Sum_{k=1..m} prime(k)^n).

Programs

  • Mathematica
    Table[Sum[Prime[k]^6, {k, n}], {n, 100}]
    Accumulate[Prime[Range[30]]^6] (* Harvey P. Dale, Oct 29 2023 *)
  • PARI
    a(n) = sum(k=1, n, prime(k)^6); \\ Michel Marcus, Mar 01 2022

Formula

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