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.

A133540 Sum of fourth powers of five consecutive primes.

Original entry on oeis.org

17764, 46309, 129749, 259445, 536885, 1229525, 2124485, 3915125, 6610565, 9749525, 13921925, 20888885, 31132085, 42152165, 58884485, 79416485, 99924245, 126756965, 160369445, 202960565, 266078165, 341740325, 415341125, 498962405
Offset: 1

Views

Author

Artur Jasinski, Sep 14 2007

Keywords

Examples

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

Crossrefs

Programs

  • Mathematica
    a = 4; Table[Prime[n]^a + Prime[n + 1]^a + Prime[n + 2]^a + Prime[n + 3]^a + Prime[n + 4]^a, {n, 1, 100}]

Formula

a(n) = A133526(n) + A030514(n+4). - Michel Marcus, Nov 09 2013