Suppose I have the following recurrence relation: $$ E_{n+1} = E_{n} \ \left[ 1 + \left( \frac{ 2 \ \lambda }{ \sqrt{E_{n}} } \right) + \left( \frac{ \lambda }{ \sqrt{E_{n}} } \right)^{2} \right] \tag{1} $$ where $\lambda \in R$ is some known, positive definite constant and we are given $E_{0}$.
Looking at Newton's method, I found a general solution of: $$ f\left( E_{n} \right) = f_{o} \sqrt{ \lambda + 2 \sqrt{E_{n}} } \ e^{-\left(\sqrt{E_{n}}/\lambda\right)} \tag{2} $$ starting from the assumption that we could rewrite Equation 1 in the form: $$ E_{n+1} = E_{n} - \frac{ f\left( E_{n} \right) }{ f'\left( E_{n} \right) } \tag{3} $$
However, I am not sure how this helps me or if it even helps.
Questions
I am curious if there is a way to determine the value of $n$ required to reach some set value for $E_{n+1}$? Is there a general solution (or general approach for this type of recurrence relation) for this example, i.e., a general analytic function that depends upon $E_{0}$, $\lambda$, and $E_{n+1}$ for $n$?