Can a circle of a given radius $r$ always be placed (in $\mathbb{R}^2$) such that the number of points with integer coordinates inside the circle is equal to the nearest integer of the circle's area?
In other words, if we imagine a square grid with the centers of the grid squares at integer points (and thus corners at $(n+0.5,m+0.5)$ for $n,m \in \mathbb{N}$), we want to place the circle at a point where if we approximate it by squares whose center it includes, we get an approximation that with respect to area is as close as possible.
I found a few older papers dealing with the number of integer points on or inside a circle with center at the origin, but not quite what I am looking for. Seeing no good theoretical approach, I wrote a small brute-force program that tries to place circles as required by sampling centers $(x,y)$ with $0 \leq x \leq 0.5$ and $x \leq y \leq 0.5$ (sufficient due to invariance to translation by an integer vector and reflection through a diagonal), and it seems indeed that even for small $r$ (e.g. $r=\sqrt{2/\pi}$) not only what I describe above is possible, but also having the circle overlap exactly $\lfloor \pi r^2 \rceil-1$ or $\lfloor \pi r^2 \rceil+1$ integer points. Yet the size of the regions for the centers of appropriately placed circles get smaller and smaller as $r$ increases, and I cannot see a general patter of how to arrive at valid center coordinates by any other means.
It is always possible. Here is a nonconstructive proof.
Fix $r$. For any point $z$ in $\mathbb{R}^2$, let $f(z)$ be the number of lattice points inside a disc of radius $r$ centered at $z$. (Make some convention for how to deal with points on the boundary; it won't matter.) Then $$\int_{z \in [0,1]^2} f(z) \ d\mbox{Area} = \pi r^2$$
So there is some $z_{-}$ for which $f(z_{-}) < \pi r^2$ and some $z_{+}$ for which $f(z_{+})> \pi r^2$. Choose a path $\gamma$ from $z_{-}$ to $z_{+}$ which does not pass through any point which is at distance $r$ from two different lattice points. Since we only have to avoid finitely many points within $[0,1]^2$ to do this, it is always possible. Along that path, $f$ takes integer values and only changes by $\pm 1$. So it must be $\lfloor \pi r^2 \rceil$ at some point.