login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A051208
Numbers of the form x^2-6^y >= 0.
3
0, 3, 8, 9, 10, 13, 15, 19, 24, 28, 30, 35, 40, 43, 45, 48, 58, 63, 64, 73, 75, 80, 85, 94, 99, 108, 115, 120, 133, 138, 143, 145, 148, 160, 163, 168, 184, 189, 190, 195, 219, 220, 224, 225, 250, 253, 255, 268, 283, 288, 304, 313, 318, 323, 324, 325, 355, 360, 364, 385, 394, 399
OFFSET
1,2
MATHEMATICA
max = 400; Clear[f]; f[m_] := f[m] = Select[Table[x^2 - 6^y, {y, 0, m}, {x, Floor[6^(y/2)], Ceiling[Sqrt[6^y + max]]}] // Flatten // Union, 0 <= # <= max &]; f[1]; f[m = 2]; While[f[m] != f[m - 1], m++]; Print["m = ", m]; A051208 = f[m] (* Jean-François Alcover, May 13 2017 *)
CROSSREFS
Sequence in context: A276006 A091767 A024549 * A211223 A350776 A247544
KEYWORD
nonn
STATUS
approved