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.

A133541 Sum of fifth powers of five consecutive primes.

Original entry on oeis.org

181258, 552519, 1972133, 4445107, 10864643, 31214741, 59472599, 127396699, 240776801, 381348901, 590182759, 979749101, 1625329443, 2354069543, 3557186207, 5132070551, 6786946651, 9149078751, 12243523093, 16477457435
Offset: 1

Views

Author

Artur Jasinski, Sep 14 2007

Keywords

Examples

			a(1)=181258 because 2^5+3^5+5^5+7^5+11^5=181258.
		

Crossrefs

Programs

  • Mathematica
    a = 5; Table[Prime[n]^a + Prime[n + 1]^a + Prime[n + 2]^a + Prime[n + 3]^a + Prime[n + 4]^a, {n, 1, 100}]
    Total/@Partition[Prime[Range[30]]^5,5,1] (* Harvey P. Dale, Dec 02 2017 *)

Formula

a(n) = A133527(n) + A050997(n+4). - Michel Marcus, Nov 09 2013