Consider a function $R(n)$ defined across the naturals as $$R(n) = n \cdot 10^5$$ Consider another function $F(n)$ defined recursively across the naturals as $$F(n) = 1 + F(n - 1)\cdot \frac{n}{n-1}, \ n \ge 2, \ F(1) = 1$$ I am initially trying to prove that eventually, $F(n)$ will be greater than $R(n)$, as well as determined a closed form expression for $F(n)$. Clearly, $$\frac{R(n)}{n} = 10^5 \\ \frac{F(n)}{n} - \frac{F(n-1)}{n-1} = \frac{1}{n}$$ Then, we can consider the harmonic series. We'll get a telescoping series, and after some simplifications, we get: $$\sum_{i=1}^n \frac{1}{i} = \frac{F(n)}{n}$$ Since we know the harmonic series diverges to infinity as $n \rightarrow \infty$, then $\frac{F(n)}{n}$ also diverges to infinity as $n \rightarrow \infty$.
$\frac{R(n)}{n}$ is constant as $n$ grows, but $\frac{F(n)}{n}$ grows without bound. $$\frac{F(n)}{n} \gt \frac{R(n)}{n} \iff F(n) \gt R(n)$$ This solves the first problem. I'm stuck on how to use any of this information to determine a closed form expression for $F(n)$. Can we also find an analytical continuation of $F(n)$ to the reals?