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”).

A051210
Numbers of the form x^2-8^y >= 0.
2
0, 1, 3, 8, 15, 17, 24, 28, 35, 36, 41, 48, 56, 57, 63, 64, 73, 80, 92, 99, 105, 113, 120, 129, 132, 136, 143, 161, 164, 168, 188, 192, 195, 217, 224, 225, 248, 255, 260, 272, 281, 288, 297, 316, 323, 329, 336, 353, 356, 360, 377, 388, 392, 393, 399, 420, 433
OFFSET
1,3
MATHEMATICA
max = 500; Clear[f]; f[m_] := f[m] = Select[Table[x^2 - 8^y, {y, 0, m}, {x, Floor[8^(y/2)], Ceiling[Sqrt[8^y + max]]}] // Flatten // Union, 0 <= # <= max &]; f[1]; f[m = 2]; While[f[m] != f[m - 1], m++]; Print["m = ", m]; A051210 = f[m] (* Jean-François Alcover, May 14 2017 *)
CROSSREFS
Sequence in context: A045263 A004733 A310307 * A191773 A310308 A310309
KEYWORD
nonn
STATUS
approved