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.

A161612 Primes that are the sum of 15 consecutive primes.

Original entry on oeis.org

379, 491, 733, 797, 863, 1487, 1559, 1637, 1873, 1951, 2027, 2267, 2351, 3083, 3167, 3251, 3671, 4457, 4549, 4639, 4729, 5119, 5683, 5953, 6043, 6133, 6311, 6569, 6659, 7937, 8761, 9199, 9371, 10007, 11497, 11701, 11897, 12007, 12113, 12917, 13121
Offset: 1

Views

Author

Keywords

Examples

			3+5+7+11+13+17+19+23+29+31+37+41+43+47+53=379.
7+11+13+17+19+23+29+31+37+41+43+47+53+59+61=491,...
		

Programs

  • Mathematica
    Select[Table[Plus@@Prime[Range[n, n + 14]], {n, 100}], PrimeQ] (* From Alonso del Arte, Dec 15 2010 *)