I was looking at the integral described in this paper, which claims it is simple using the Risch algorithm and shows the result
$$\displaystyle \int \frac{x (x+1) \left(e^{2 x^2} x^2+2 e^{3 x^2} x \left(x-\left(2 x^3+2 x^2+x+1\right) \log (x+1)\right)-\log ^2(x+1)\right)}{\left((x+1) \log ^2(x+1)-\left(x^3+x^2\right) e^{2 x^2}\right)^2}~dx$$
I tried it with Mathematica (I thought that parts of the Risch algorithm were implemented), but to no avail with Windows10, x86, V13.
Integrate[ x (x + 1) ((x^2 E^(2 x^2) - Log[x + 1]^2 +
2 x E^(3 x^2) (x -
1 (2 x^3 + 2 x^2 + x + 1) Log[x + 1])))/((x + 1) Log[
x + 1]^2 - (x^3 + x^2) E^(2 x^2))^2, x]
I also tried to download and use the IntegrateAlgebraic, but didn't have any luck with it. Lastly, I was going to try in on FriCAS Online since it has most of the algorithm implemented, but couldn't get that to work.
Is there some way to coax MMA to solve this?

