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.

A131686 Sum of squares of five consecutive primes.

Original entry on oeis.org

208, 373, 653, 989, 1469, 2189, 2981, 4061, 5381, 6701, 8069, 9917, 12029, 14069, 16709, 19541, 22061, 24821, 27989, 31421, 35789, 40661, 45029, 49589, 53549, 56909, 62837, 69389, 76709, 84149, 93581, 100253, 107741, 115541, 124109, 131837
Offset: 1

Views

Author

Artur Jasinski, Sep 14 2007

Keywords

Examples

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

Crossrefs

Programs

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