Suppose we have the following function, where $s\in\mathbb{R}$ and $t_1,t_2,n\in\mathbb{N}\cup \{0\}$ are constants:
$$\mathbf{P}(r)=\left(t_1+\prod_{k=1}^{r}(t_2+k^{s})\right)^n$$
Question: What is the asymptotic expansion of $\mathbf{P}(r)$? (Is there a more accurate approximation using special functions?)
Attempt:
Here is what I tried with Mathematica:
First, I tried to compute the asymptotic expansion of $\prod_{k=1}^{r}(t_2+k^{s})$.
(*The product expression*)productExpr = Product[t + k^s, {k, 1, r}]; (*Take the logarithm to convert the product to a sum*) logProduct = Log[productExpr]; (*Find the asymptotic expansion of the sum*) asymptoticLogSum = Asymptotic[logProduct, r -> Infinity]; (*Exponentiate the result to get the asymptotic expansion of the \ product*) asymptoticProduct = Exp[asymptoticLogSum]; (*Display the result*) asymptoticProduct // FullSimplify However, I get the same expression:
$$\prod_{k=1}^{r}(t_2+k^{s})$$ I'm not sure how to continue further. Any answer with code or math would be appreciated.
Edit: $s\in\mathbb{R}$