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.

A133550 Sum of fifth powers of n odd primes.

Original entry on oeis.org

243, 3368, 20175, 181226, 552519, 1972376, 4448475, 10884818, 31395967, 60025118, 129369075, 245225276, 392233719, 621578726, 1039774219, 1754698518, 2599294819, 3949419926, 5753649277, 7826720870, 10903777269, 14842817912
Offset: 1

Views

Author

Artur Jasinski, Sep 16 2007

Keywords

Examples

			a(2)=3368 because 3^5+5^5 = 3368.
		

Crossrefs

Programs

  • Mathematica
    c = 5; a = {}; b = 0; Do[b = b + Prime[n]^c; AppendTo[a, b], {n, 2, 1000}]; a

Formula

a(n) = A122103(n+1)-32.