I have a problem where I need to sum reciprocal cubed distances between the origin, $(0, 0)$, and all points on a coordinate grid. For a distance $d$, by reciprocal cube I mean $\frac{1}{d^3}$. All points are specified by $(m, n)$ for $m,n \in \mathbb{Z}$ (excluding $(0, 0)$), thus all the distances are $\sqrt{m^2 + n^2}$ (i.e. all hypotenuses of integer-legged right triangles).
I desire a closed form of the following:
$\sum_{m,n \in \mathbb{Z}}^{'} \frac{1}{\sqrt{m^2 + n^2}^3}$
This should be equal to $4\cdot\sum_{m,n \in \mathbb{N}}^{'} \frac{1}{\sqrt{m^2 + n^2}^3}$, as the distances in all quadrants are considered, where the sum over $\mathbb{N}$ ($0\in\mathbb{N}$ here) gives just the first quadrant. I welcome a closed form of either sum.
Supplemental:
If no closed form is possible, I would also be interested in other sums that would converge faster and would be easier to compute, in order to estimate a decimal value for the sum.
A less useful, but equivalent sum may be $\zeta(3)\cdot\sum_{coprime(m,n)}^{'} \frac{1}{\sqrt{m^2 + n^2}^3}$, which I have partially computed to be $\approx 1.6$ thus far, but which may change as the sum increases and converges. In english, this is the sum of all coprime distances (a line from the $(0, 0)$ to $(m, n)$ intersecting no other points), times Apérty's constant, which extends each coprime distance line to all other lines (e.g. $(3, 4) \rightarrow (3, 4), (6, 8), (9, 12), \dots$).
Disclaimer: I have little experience with sums and the $\zeta$ function. If I am blatantly wrong in an assumption (e.g. the series converges), please illustrate where.