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.

A236225 Sum of the seventeenth powers of the first n primes.

Original entry on oeis.org

131072, 129271235, 763068724360, 233393582711567, 505680422082005338, 9156096341463343271, 836396358227800107448, 6316783216012602293387, 147366822776675571219490, 7404514559506748686057599, 29954631333669491864740510, 486442572159704647268887427
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 A138032.

Programs

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

Formula

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