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.

A166255 Numbers k with property that the sum of 70 successive primes starting with prime(k) is a square.

Original entry on oeis.org

71, 201, 1024, 1594, 10915, 36934, 51050, 60054, 60914, 71822, 80331, 85230, 92916, 96352, 103271, 114667, 151019, 158591, 183484, 184348, 193979, 196078, 223587, 277476, 295890, 309502, 317601, 334181, 338139, 369101, 485330, 494188, 530832
Offset: 1

Views

Author

Zak Seidov, Oct 10 2009

Keywords

Comments

Sum_{i=k..k+69} prime(i) = s^2; and the values of s are A166256.

Examples

			prime(71)+...+prime(71+69) = 200^2 = A166256(1)^2,
prime(201)+...+prime(201+69) = 322^2 = A166256(2)^2,
prime(1024)+...+prime(1024+69) = 770^2 = A166256(3)^2.
		

Crossrefs

Cf. A166256.
Cf. A064397 (2 primes), A076305 (3 primes), A072849 (4 primes), A166261 (120 primes).

Programs

  • Mathematica
    PrimePi[First[#]]&/@Select[Partition[Prime[Range[1000000]],70,1], IntegerQ[ Sqrt[ Total[#]]]&] (* Harvey P. Dale, Jun 13 2011 *)