OFFSET
1,1
COMMENTS
Initial primes of the sets of 11 consecutive primes are
1013, 1117, 13291, 29179, 32789, 82183, 91771, 101891, 124181, 146347, 156679, 163901, 181967, 244747, 268537, 281233, 301999, 454859, 487111, 490541, 570407, 616843, 680971, 683923, 713183, 754483, 771349, 1020779, 1023227, 1053959, 1166987
and their indices are
170, 187, 1578, 3172, 3516, 8035, 8867, 9757, 11664, 13538, 14409, 15007, 16490, 21614, 23524, 24535, 26165, 38072, 40538, 40807, 46852, 50379, 55135, 55356, 57545, 60580, 61836, 80027, 80212, 82399, 90554
EXAMPLE
107^2 = 11449 = prime(170) + ... + prime(180) = 1013 + ... + 1069.
MATHEMATICA
Select[Sqrt[Total /@ Partition[Prime[Range[100000]], 11, 1]], IntegerQ]
PROG
(Magma) [Isqrt(m): n in [1..10^5] | IsSquare(m) where m is &+[NthPrime(n+i): i in [0..10]]]; // Bruno Berselli, Mar 05 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Mar 05 2013
STATUS
approved