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 A257415 #18 Jun 18 2020 23:25:09 %S A257415 480,576,672,840,864,945,1056,1080,1120,1155,1248,1296,1320,1365,1485, %T A257415 1512,1536,1560,1600,1632,1755,1760,1785,1824,1848,1995,2025,2040, %U A257415 2079,2080,2145,2184,2208,2280,2295,2376,2415,2457,2464,2560,2565,2625,2720,2760 %N A257415 Values of n such that there are exactly 8 solutions to x^2 - y^2 = n with x > y >= 0. %H A257415 David A. Corneth, <a href="/A257415/b257415.txt">Table of n, a(n) for n = 1..10000</a> (first 1600 terms from Colin Barker) %e A257415 480 is in the sequence because there are 8 solutions to x^2 - y^2 = 480, namely (x,y) = (22,2), (23,7), (26,14), (29,19), (34,26), (43,37), (62,58), (121,119). %t A257415 nn = 3000; %t A257415 t = Table[0, {nn}]; %t A257415 Do[n = x^2 - y^2; If[n <= nn, t[[n]]++], {x, nn}, {y, 0, x - 1}]; %t A257415 Position[t, 8] // Flatten (* _Jean-François Alcover_, Jun 18 2020, after _T. D. Noe_ in A034178 *) %o A257415 (PARI) is_A257415(n)={A034178(n)==8} \\ _M. F. Hasler_, Apr 22 2015 %Y A257415 Cf. A257408, A257409, A257410, A257411, A257412, A257413, A257414, A257416, A257417. %Y A257415 Cf. A034178. %K A257415 nonn %O A257415 1,1 %A A257415 _Colin Barker_, Apr 22 2015