I have been asked to find the limit of the following sequence $$\sum_{k=0}^n\frac{1}{e^k+\sqrt{k}+1}$$
when $ n $ goes to infinity. I tried to write it as a Riemann sum but the exponential term makes it quite impossible. Any help or idea will be so appreciate. Thanks for all.
That the sequence converges is clear from comparison test:
$\frac{1}{e^k+\sqrt{k}+1}\leq e^{-k}$
Since the series $\sum_ke^{-k}$ converges, then so does the sequence $s_n=\sum^n_{k=1}\frac{1}{e^k+\sqrt{k}+1}$.
From the caliber of mathematics you do, I think that that may not be what you intended to ask. As for the value of the limit, I ignore whether there is closed form or an exact integral representation.
I think that a numerical computation is in place. I wrote a simple R script to estimate the first 30 elements of the sequence at double precision.
One of course can write simple code to obtain multiple precision, but this is just for MSE.