login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A051215
Numbers of the form 4^x-y^2 >= 0.
2
0, 1, 3, 4, 7, 12, 15, 16, 28, 31, 39, 48, 55, 60, 63, 64, 87, 112, 124, 127, 135, 156, 175, 183, 192, 207, 220, 231, 240, 247, 252, 255, 256, 295, 348, 375, 399, 448, 495, 496, 508, 511, 540, 583, 615, 624, 663, 700, 732, 735, 759, 768, 799, 828, 847, 855, 880
OFFSET
1,3
MATHEMATICA
max = 1000; Clear[f]; f[m_] := f[m] = Select[Table[4^x - y^2, {x, 0, m}, {y, 0, Ceiling[4^(x/2)]}] // Flatten // Union, 0 <= # <= max &]; f[1]; f[m = 2]; While[f[m] != f[m - 1], m++]; Print["m = ", m]; A051215 = f[m] (* Jean-François Alcover, May 14 2017 *)
CROSSREFS
Sequence in context: A083561 A018195 A086417 * A192112 A034885 A280991
KEYWORD
nonn
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 23 18:10 EDT 2024. Contains 376182 sequences. (Running on oeis4.)