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 A257413 #14 Jun 18 2020 23:25:03 %S A257413 240,288,315,336,360,384,432,495,504,525,528,560,585,600,624,640,675, %T A257413 693,735,765,792,800,816,819,825,855,880,896,912,936,975,1035,1040, %U A257413 1071,1104,1125,1176,1197,1215,1224,1232,1260,1275,1287,1305,1323,1360,1368 %N A257413 Values of n such that there are exactly 6 solutions to x^2 - y^2 = n with x > y >= 0. %H A257413 Colin Barker, <a href="/A257413/b257413.txt">Table of n, a(n) for n = 1..1100</a> %e A257413 240 is in the sequence because there are 6 solutions to x^2 - y^2 = 240, namely (x,y) = (16,4), (17,7), (19,11), (23,17), (32,28), (61,59). %t A257413 nn = 2000; %t A257413 t = Table[0, {nn}]; %t A257413 Do[n = x^2 - y^2; If[n <= nn, t[[n]]++], {x, nn}, {y, 0, x - 1}]; %t A257413 Position[t, 6] // Flatten (* _Jean-François Alcover_, Jun 18 2020, after _T. D. Noe_ in A034178 *) %o A257413 (PARI) is_A257413(n)={A034178(n)==6} \\ _M. F. Hasler_, Apr 22 2015 %Y A257413 Cf. A257408, A257409, A257410, A257411, A257412, A257414, A257415, A257416, A257417. %Y A257413 Cf. A034178. %K A257413 nonn %O A257413 1,1 %A A257413 _Colin Barker_, Apr 22 2015