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 A175897 #11 Feb 05 2022 19:36:53 %S A175897 1681,3146,5917,308950,10553441,10553550,4273262954,9781980985 %N A175897 Numbers n with property that n*prime(n)+(n+1)*prime(n+1) is a perfect square s^2. %C A175897 Or, numbers n with property that A033286(n)+A033286(n+1) is a perfect square s^2, A033286(n)=n*(n-th prime). [From _Zak Seidov_, Oct 12 2010] %C A175897 a(9) > pi(4*10^12). [From _Donovan Johnson_, Oct 22 2010] %e A175897 {n,s}: {1681,6943},{3146,13487},{5917,26299},{308950,1647737}, {10553441,63320647},{10553550,63321299}; no more n's up to 2*10^8. %t A175897 Position[Total/@Partition[Table[n Prime[n],{n,310000}],2,1],_? (IntegerQ[ Sqrt[#]]&)]//Flatten (* The program generates the first four terms of the sequence. To generate more, Increase the Range constant, but the program may take a long time to run. *) (* _Harvey P. Dale_, Feb 05 2022 *) %o A175897 (PARI) isok(n) = issquare(n*prime(n)+(n+1)*prime(n+1)); \\ _Michel Marcus_, Oct 19 2013 %K A175897 more,nonn %O A175897 1,1 %A A175897 _Zak Seidov_, Oct 11 2010 %E A175897 a(7)-a(8) from _Donovan Johnson_, Oct 22 2010