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 A051214 #14 May 14 2017 03:00:41 %S A051214 0,1,2,3,5,8,9,11,17,18,23,26,27,32,45,47,53,56,65,71,72,74,77,80,81, %T A051214 83,99,104,122,143,153,161,162,179,194,200,207,218,227,234,239,242, %U A051214 243,245,251,288,320,329,338,362,368,405,423,440,473,477,485,504,506,533 %N A051214 Numbers of the form 3^x-y^2 >= 0. %H A051214 Vincenzo Librandi, <a href="/A051214/b051214.txt">Table of n, a(n) for n = 1..1331</a> %t A051214 max = 1000; Clear[f]; f[m_] := f[m] = Select[Table[3^x - y^2, {x, 0, m}, {y, 0, Ceiling[3^(x/2)]}] // Flatten // Union, 0 <= # <= max &]; f[1]; f[m = 2]; While[f[m] != f[m - 1], m++]; Print["m = ", m]; A051214 = f[m] (* _Jean-François Alcover_, May 14 2017 *) %Y A051214 Cf. A201124. %K A051214 nonn %O A051214 1,3 %A A051214 _David W. Wilson_