OFFSET
1,1
EXAMPLE
For the circle with radius a(1) = 2, the point (3/2, 3/2 ), i.e. the center of the unit square bounded by x = 1, x = 2, y = 1, y = 2, is outside the circle of radius 2 centered at the origin so there are 12 unit squares with centers inside the circle of radius 2, and 12 < Pi *2 *2.
MATHEMATICA
t = {}; For[n = 1, n < 223, n++, cnt = 0; For[x = -n, x < 0, x++, For[y = -n, y < 0, y++, If[N[Norm[{x + 1/2, y + 1/2}]] < n, cnt++]]] If[Pi*n*n > 4*cnt, t = Append[t, n]]] Print[t];
CROSSREFS
KEYWORD
nonn
AUTHOR
Dimitri Papadopoulos, Jun 19 2018
STATUS
approved