4.45.50 x2y(x)=2y(x)

ODE
x2y(x)=2y(x) ODE Classification

[[_high_order, _missing_y]]

Book solution method
TO DO

Mathematica
cpu = 0.0609586 (sec), leaf count = 62

{{y(x)13c1(3x2+6x+2)Ei(2x)+c4x2+16c1e2/x(x2+5x+2)x+c3x+c2}}

Maple
cpu = 0.138 (sec), leaf count = 51

{y(x)=_C1(x2+2x+23)Ei(1,2x1)+x_C1(x2+5x+2)6e2x1+_C2x22+_C3x+_C4} Mathematica raw input

DSolve[x^2*y''''[x] == 2*y'''[x],y[x],x]

Mathematica raw output

{{y[x] -> (x*(2 + 5*x + x^2)*C[1])/(6*E^(2/x)) + C[2] + x*C[3] + x^2*C[4] + ((2 
+ 6*x + 3*x^2)*C[1]*ExpIntegralEi[-2/x])/3}}

Maple raw input

dsolve(x^2*diff(diff(diff(diff(y(x),x),x),x),x) = 2*diff(diff(diff(y(x),x),x),x), y(x),'implicit')

Maple raw output

y(x) = -_C1*(x^2+2*x+2/3)*Ei(1,2/x)+1/6*x*_C1*(x^2+5*x+2)*exp(-2/x)+1/2*_C2*x^2+
_C3*x+_C4