Is there a way to integrate sqrt(x+sqrt(x)) in Sage?
Hello, I want to get indefiniteIntegral of sqrt(x+sqrt(x)), But in Sage, I get nothing but integrate(sqrt(x + sqrt(x)), x).
sage: x = var('x')
sage: h = sqrt(x+sqrt(x))
sage: h.integral(x)
Is there a way to integrate this function?