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.
%I A264858 #30 Aug 10 2023 03:02:30 %S A264858 0,17,539,652,6420,350857847 %N A264858 Integers k such that A007504(k) + 1 is a square. %C A264858 Integers k such that the sum of the first k primes + 1 is a square. %C A264858 Integers k such that A014284(k+1) is a square. %C A264858 In A110996, it is commented that a(6) > 250000, if it exists. %C A264858 a(6) > 50000000, if it exists. - _Jon E. Schoenfield_, Nov 29 2015 %e A264858 a(2) = 17 because A007504(17) + 1 = 440 + 1 = 441 is a square. %t A264858 t = Accumulate[Prime@ Range@ 100000]; Prepend[Select[Range@ 7000, IntegerQ@ Sqrt[t[[#]] + 1] &], 0] (* _Michael De Vlieger_, Nov 29 2015, after _Zak Seidov_ at A007504 *) %t A264858 Join[{0},Position[Accumulate[Prime[Range[6500]]]+1,_?(IntegerQ[Sqrt[ #]]&)]] // Flatten (* _Harvey P. Dale_, Feb 12 2018 *) %o A264858 (PARI) lista(nn) = { print1(0, ", "); s = 1; for(k=1, nn, s += prime(k); if(issquare(s), print1(k, ", ")););} %Y A264858 Cf. A007504, A014284, A033997, A089228, A110996. %K A264858 nonn,more %O A264858 1,2 %A A264858 _Altug Alkan_, Nov 26 2015 %E A264858 a(6) from _Jinyuan Wang_, Aug 09 2023