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 A257410 #9 Apr 22 2015 17:24:47 %S A257410 45,48,63,64,72,75,80,81,99,112,117,128,147,153,171,175,176,180,200, %T A257410 207,208,243,245,252,261,272,275,279,300,304,324,325,333,363,368,369, %U A257410 387,392,396,423,425,464,468,475,477,496,507,531,539,549,575,588,592 %N A257410 Values of n such that there are exactly 3 solutions to x^2 - y^2 = n with x > y >= 0. %H A257410 Colin Barker, <a href="/A257410/b257410.txt">Table of n, a(n) for n = 1..500</a> %e A257410 45 is in the sequence because there are 3 solutions to x^2 - y^2 = 45, namely (x,y) = (7,2),(9,6),(23,22). %t A257410 r[n_] := Reduce[x^2 - y^2 == n && x > y >= 0, {x, y}, Integers]; Reap[For[n = 1, n < 600, n++, rn = r[n]; If[rn[[0]] === Or && Length[rn] == 3, Print[n]; Sow[n]]]][[2, 1]] (* _Jean-François Alcover_, Apr 22 2015 *) %o A257410 (PARI) is_A257410(n)={A034178(n)==3} \\ _M. F. Hasler_, Apr 22 2015 %Y A257410 Cf. A257408, A257409, A257411-A257417. %Y A257410 Cf. A034178. %K A257410 nonn %O A257410 1,1 %A A257410 _Colin Barker_, Apr 22 2015