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.

A133543 Sum of seventh powers of five consecutive primes.

Original entry on oeis.org

20391154, 83139543, 493476029, 1387269643, 4791271547, 22021660685, 49471526279, 143993064739, 337853466881, 606267252541, 1095640496695, 2242839022421, 4636558630107, 7584547192247, 13373440186463
Offset: 1

Views

Author

Artur Jasinski, Sep 14 2007

Keywords

Examples

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

Crossrefs

Programs

  • Mathematica
    a = 7; 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[20]]^7,5,1] (* Harvey P. Dale, Mar 05 2022 *)