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.

A236223 Sum of the fifteenth powers of the first n primes.

Original entry on oeis.org

32768, 14381675, 30531959800, 4778093469743, 4182026262885394, 55367919276976151, 2917790970786791944, 18098918000661590243, 284734153465052835850, 8913922901063237276799, 32379184892907923206750, 365825452844723230295243, 1920923767836261141183844
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]^15, {k, n}], {n, 1000}]
    Accumulate[Prime[Range[15]]^15] (* Harvey P. Dale, Mar 09 2022 *)

Formula

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