Is there any analysis for this series $\phi=\sum_{n_1, n_2,n_3 \in Z}^\infty e^{-\sqrt{n_1^2 + n_2 ^2+n_3^2}}$? This one seems like an extension of Riemann Theta Function where it takes a square root for each term. I also see posts from here but it only works for one variable and $0<s<1$, and I can change this series similarly by Mellin transform as
$$ \phi=\sum_{n_1, n_2,n_3 \in Z}^\infty e^{-\sqrt{n_1^2 + n_2 ^2+n_3^2}}=\frac{1}{2\pi i}\int_{c-i\infty}^{c+i\infty}\sum_{n_1, n_2,n_3 \in Z}^\infty \frac{\Gamma(x)}{(\sqrt{n_1^2 + n_2 ^2+n_3^2})^x} dx $$
However, I don't know what to do next. Is there any way to solve this integral? Or are there any resources I can refer to? Thank you so much!
A computationally attractive integral representation of (even more general) $$\Phi_k(\alpha)=\sum_{n_1,\ldots,n_k\in\mathbb{Z}}e^{-\alpha\sqrt{n_1^2+\ldots+n_k^2}}\qquad(\alpha>0)$$ may be obtained using the following integral (a Laplace transform): $$e^{-\sqrt{s}}=\frac1{2\sqrt\pi}\int_0^\infty t^{-3/2}e^{-st-1/(4t)}\,dt.$$
We get, after the substitution $t=\pi/(\alpha x)^2$, \begin{align*} \Phi_k(\alpha) &=\frac1{2\sqrt\pi}\int_0^\infty t^{-3/2}e^{-1/(4t)}\left(\sum_{n\in\mathbb{Z}}e^{-\alpha^2 n^2 t}\right)^k\,dt \\&=\frac\alpha\pi\int_0^\infty e^{-(\alpha x)^2/(4\pi)}\vartheta(1/x)^k\,dx, \end{align*} where $\vartheta(x):=\sum_{n\in\mathbb{Z}}e^{-\pi(nx)^2}$ is a "theta function", with known $\vartheta(1/x)=x\vartheta(x)$.
Here is a numerical experiment using PARI/GP to illustrate the efficiency. In the code
the function
goo(m)computes the partial sum $\sum_{-m\leqslant n_1,n_2,n_3\leqslant m}$ of $\phi=\Phi_3(1)$, while the functionfoo(h)computes the integral for $\Phi_3(1)$ obtained via the substitution $x=e^y$ from the "theta" integral above, using the (simple) trapezoidal rule with step $h$; the remaining functions are for some sort of "optimization". The computations usingfoo(h)give $$\phi=\underbrace{25.39268269326689073}_{h=0.1}\underbrace{60512162955540324466}_{h=0.05}\underbrace{338930111641124451230483735111+}_{h=0.02}$$ (in factfoo(0.02)gives $104$ correct digits of $\phi$, andfoo(0.01)gives $211$ correct digits).The computations using
goo(m)are much slower (especially w.r.t. the time taken): $$\phi=\underbrace{25.39268}_{m=20}\underbrace{269326689073}_{m=50}\underbrace{60512162955540324466338}_{m=100}\underbrace{930111641124451230483735111+}_{m=200}$$ (heregoo(200)gives $84$ correct digits of $\phi$).