Simple contradictory example
Let's consider the covariance between $X_t$ and $X_{t+1}$ this is $$\text{cov}(X_t,X_{t+1}) = \text{cov}(X_{t},2X_{t}+e_t) = 2 \, \text{var}(X_t)$$
You could generalize this to $\text{cov}(X_t,X_{t+s}) = 2^s \text{var}(X_t)$
You assumed that the variance is constant in $t$ (because the time-series has a stationary solution), but it is not.
$$\text{var}(X_t) = \text{var}(X_{t-1}+e_t) = \text{var}(X_{t-1}) + \text{var}(e_t) + \underbrace{2\text{cov}(X_{t-1},e_t)}_{\text{= 0 by assumption}} \neq \text{var}(X_{t-1})$$
About the stationarity
Inverting the time-direction/causality of the process (like here) is not correctly representing the time-series.
We can indeed rewrite $$X_t = 2X_{t-1} + e_t$$ into $$X_{t-1} = 0.5 X_t - 0.5 e_t$$ or rebrand this $-0.5 e_t$ as $u_{t-1}$ such that it is $$X_{t-1} = 0.5 X_t + u_{t-1}$$ But this is not similar to an AR1 process with $\varphi_1 = 0.5$ because the $u_{t-1}$ (which is $e_t$ in disguise) correlates with $X_{t}$.
This is similar to expressing $$B = A +\epsilon \qquad \text{where: cov$(A,\epsilon)=0$}$$
in terms of
$$A = B - \epsilon = B + \epsilon^\prime$$
We can not consider $\text{var}(\epsilon^\prime) = \text{var}(\epsilon)$ and $\text{cov}(B,\epsilon^\prime) =0$.
If we would do this then we could compute the variance like
$$\begin{array}{rcccl}
\text{var}(B) &=& \text{var}(A) + \text{var}(\epsilon) + \overbrace{2 \, \text{cov}(A,\epsilon)}^{\text{=0 by assumption}} &=& \text{var}(A) + \text{var}(\epsilon)\\
\text{var}(A) &=& \text{var}(B) + \text{var}(\epsilon^\prime) + 2 \, \text{cov}(B,\epsilon^\prime) &=& \require{cancel} \cancel{ \text{var}(B) + \text{var}(\epsilon^\prime)}
\end{array}$$
It would be a contradiction to have both $\text{var}(B) = \text{var}(A) + \text{var}(\epsilon) $ and also $\text{var}(A) = \text{var}(B) + \text{var}(\epsilon) $