I am requesting some help to spot where I did mistake since I spent hours reviewing my solution but wasn't successful spotting the mistake to correct it.
I need to find the radius of convergence for the following summation:
$$ f(x) = \sum_{n=1}^\infty \left(1+\frac{(-1)^n}{n}\right)^{n^2} \cdot \frac{(2x+1)^n}{n}$$ So, I defined a new function $f(t)$ that's exactly like $f(x)$ but replaced $2x+1$ with $t$ I calculated the radius of convergence for $f(t)$ and found that it's $1/e$
Since $t=2x+1$ thus $x=\frac{t-1}{2}$ I said that the radius of convergence for $f(x)-R_x$ is equal to $$\frac{R_{t}-1}{2}=\frac{\frac{1}{e}-1}{2}$$
But, I can confirm that my answer is wrong (through automatic checker).
Note that\begin{align}\limsup_n\sqrt[n]{\left|\left(1+\frac{(-1)^n}n\right)^{n^2}\frac{(2x+1)^n}n\right|}&=\limsup_n\left(1+\frac{(-1)^n}n\right)^n\frac{|2x+1|}{\sqrt[n]n}\\&=e|2x+1|\\&=2e\left|x+\frac12\right|.\end{align}Therefore, your series converges if $2e\left|x+\frac12\right|<1$ and diverges if $2e\left|x+\frac12\right|>1$. So, the radius of convergence is $\frac1{2e}$.