This may be a question with really obvious analytical answers which I do not see.
You play a multistep game with a die with equal probability of generating any of $1,2,\cdots, n$ at each throw. At the end of each throw of the die, you may choose to stop the game and walk away with the same dollar amount as the number generated by the last roll of the die, or choose to pay \$1 to continue the game. The game can last indefinitely. What is the amount of money you expect to collect from this game? Is there an easy asymptotic formula of the expectation as $n\to\infty$?
Note that only at the end of roll $n$, the expected future income is $\frac{n+1}2$ should you decide to continue the game, since the $n+1$'st roll is the absolutely latest you have to stop. One can easily set up the recursion for the expectation of the game value at any step. But is there an asymptotic formula for it as $n\to\infty$?
For a given $n$ we have to set a threshold $k$ that we will accept. If we keep rolling the expected value of the roll we accept is $\frac 12(n+k+1)$. On average it takes $\frac n{n-k}$ rolls to get one, so we pay that much. The breakeven point comes when $$\frac 12(n+k+1)-\frac n{n-k}=k\\ (n-k)(n+k+1)-2n=2k(n-k)\\ n^2-k^2-k-n=2kn-2k^2\\ k^2-(2n+1)k+n^2-n=0\\ k=\frac12\left(2n+1\pm \sqrt{(2n+1)^2-4n^2+4n}\right)\\ k=n+\frac 12-\frac 12\sqrt{8n+1}\\ k \approx n-\sqrt {2n}+\frac 12$$ The expected value of the roll we accept is then $n-\frac {\sqrt {2n}}2+\frac 14$ and it takes $\frac {n}{\sqrt {2n}}$ tries to get one, so the payoff is about $n-\sqrt {2n}$