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 A082658 #11 Dec 08 2019 12:25:11 %S A082658 7,15,22,26,28,31,40,45,52,55,59,61,67,79,85,87,92,94,100,102,103,106, %T A082658 114,115,124,130,140,142,147,155,157,159,166,175,178,180,184,187,189, %U A082658 190,191,197,202,205,206,210,211,214,220,224,231,232,240,241,246,247 %N A082658 Integers expressible as the sum of a square and a triangular number in exactly two distinct ways. %C A082658 It is assumed here that 0 is a square but not a triangular number. - _Amiram Eldar_, Dec 08 2019 %H A082658 Amiram Eldar, <a href="/A082658/b082658.txt">Table of n, a(n) for n = 1..10000</a> %e A082658 a(4) = 26 because 26 = 1 + 25; 26 = 10 + 16. %t A082658 aQ[n_] := Length @ Solve[x^2 + y (y + 1)/2 == n && x >= 0 && y > 0, {x, y}, Integers] == 2; Select[Range[250], aQ] (* _Amiram Eldar_, Dec 08 2019 *) %Y A082658 Cf. A000217, A000290, A082657, A082659, A082660. %K A082658 nonn %O A082658 1,1 %A A082658 _Jason Earls_, May 17 2003 %E A082658 Name clarified by _Amiram Eldar_, Dec 08 2019