I recently try this $$\int\frac{\mathop{\rm Si}(x)}x\,dx$$
Mathematica failed to calculate it.
Integrate[SinIntegral[x]/x, x]
Mma 11.3 failed,but 12.0 can do it.
Sympy gives the answer
from sympy import *
x = symbols("x")
print(integrate(Si(x)/x, x))
x*hyper((1/2, 1/2), (3/2, 3/2, 3/2), -x**2/4)
So I wanted to use the result in Mma.
I have searched in sympy's document,but still can't find solution.
https://docs.sympy.org/1.0/search.html?q=mathematica&check_keywords=yes&area=default
How can I directly get this function in mathematica?
I saw numpy can be used as follows:(add import numpy as np to the beginning,otherwise it will return wrong)
Which maybe helpful.
Add:
12.0 will return an object.But I temporaily don't know how to use it.(picture is from others)


