A166255 Numbers k with property that the sum of 70 successive primes starting with prime(k) is a square.
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
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.
Links
- David A. Corneth, Table of n, a(n) for n = 1..693 (first 100 terms from Zak Seidov)
Crossrefs
Programs
-
Mathematica
PrimePi[First[#]]&/@Select[Partition[Prime[Range[1000000]],70,1], IntegerQ[ Sqrt[ Total[#]]]&] (* Harvey P. Dale, Jun 13 2011 *)
Comments