This question is inspired by @gt6989b’s comment here.
Numerical analysis suggests that the roots of the equation $\newcommand{\e}{\mathrm{e}} \e^{-πx} = \sin πx$ rapidly and closely approach integers as $x\to\infty$. Here’s a quick list of the first nine solutions:
$$\begin{array}{l} 0.18733579075230\dots \\ 0.98560325090923\dots \\ 2.00059331886993\dots \\ 2.99997431047250\dots \\ 4.00000111005168\dots \\ 4.99999995203014\dots \\ 6.00000000207297\dots \\ 6.99999999991042\dots \\ 8.00000000000387\dots \\ \end{array}$$
How can I prove (or disprove) that these values will get closer and closer to integers?
Wolfie notes that the system has the alternate form $$\newcommand{\i}{\mathrm{i}} \e^{-πx} = \frac{\i\e^{-\i πx} - \i\e^{\i πx}}2$$
Since for a large positive integer $n$, $e^{-\pi n} \approx 0$ and $\sin(\pi x)$ has roots at the integers, we expect that the equation has roots close to positive integers. To gain a better approximation, we choose the approximate value $n \in \mathbb{N}$ for the $n$th root $x_n$ and apply Newton's method once. This yields the better approximation: $$ x_n \approx n + \frac{1}{\pi }\frac{1}{{( - 1)^n e^{\pi n} + 1}}. $$ This shows that $x_n$ converges to $n$ exponentially fast.