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.

A133542 Sum of sixth powers of five consecutive primes.

Original entry on oeis.org

1905628, 6732373, 30869213, 77899469, 225817709, 818869469, 1701546341, 4243135181, 8946193541, 15119520701, 25303912709, 46580770157, 86195577389, 132965847509, 217102866629, 334423935221, 463593800381, 664500722261
Offset: 1

Views

Author

Artur Jasinski, Sep 14 2007

Keywords

Examples

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

Crossrefs

Programs

  • Mathematica
    a = 6; 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,1]^6)  (* Harvey P. Dale, Mar 13 2011 *)

Formula

a(n) = A133528(n) + A030516(n+4). - Michel Marcus, Nov 09 2013