Consider the following sum (where $\Im(z)$ denotes the imaginary part of $z$)
$$\Im(e^i+e^{e^i}+e^{e^i+e^{e^i}}\dots)$$
I.e;
$$\Im(\lim_{n\to\infty}a_n)$$ $$a_1=e^i,\ \ \ a_{n+1}=a_n+e^{a_n}\ \ \ \forall n\geq1$$
I wrote up some generic python code (Try It Online), and was surprised to see its apparent convergence to $\approx9.424$
I'm specifically concerned with the imaginary part because the real part seems to diverge logarithmically.
Does this converge? If so, are there other expressions for the constant?
Perhaps the Dirichlet test might serve useful, though I don't know how to proceed.

After a handful of iterations we have reached $$a_n = -b_n + i(3\pi + \varepsilon_n)$$ with $b_n > 0$ and $\lvert \varepsilon_n\rvert < \frac{\pi}{2}$. Then $$e^{a_n} = -e^{-b_n}\cdot e^{i\varepsilon_n} = -\frac{\cos \varepsilon_n}{e^{b_n}} - i\frac{\sin \varepsilon_n}{e^{b_n}}$$ and $$a_{n+1} = a_n + e^{a_n} = -\biggl(b_n + \frac{\cos \varepsilon_n}{e^{b_n}}\biggr) + i\biggl(3\pi + \varepsilon_n - \frac{\sin \varepsilon_n}{e^{b_n}}\biggr)\,.$$ Thus $b_{n+1} > b_n$ and $$\varepsilon_{n+1} = \varepsilon_n - \frac{\sin \varepsilon_n}{e^{b_n}}$$ has the same sign as and smaller magnitude than $\varepsilon_n$. (Here we have $\varepsilon_n > 0$, but for other starting values one might reach imaginary parts slightly smaller than an odd multiple of $\pi$.)
It follows that $\varepsilon_n$ converges, and it remains to see that the limit is $0$. Suppose the limit were $\delta \neq 0$. Then for all $n$ we have $$\lvert \varepsilon_n - \varepsilon_{n+1}\rvert = \frac{\sin \lvert\varepsilon_n\rvert}{e^{b_n}} \geqslant \frac{\sin \lvert\delta\rvert}{e^{b_n}}$$ and it follows that $$\sum_{n = N}^{\infty} e^{-b_n} < +\infty\,. \tag{$\ast$}$$ Since $$\lvert b_n - b_{n+1}\rvert = \frac{\cos \varepsilon_n}{e^{b_n}} \leqslant e^{-b_n}$$ it further follows that $b_n$ converges, in particular $b_n < B$ for all $n$ and some $B$, but this contradicts $(\ast)$. Therefore $$\lim_{n \to \infty} \varepsilon_n = 0$$ follows.