In order to solve second order differential equations with constant coefficients of the form $$ay''+by'+cy=0$$ we need two initial conditions, for example $y(0)=1$ and $y'(0)=2$.
However, I just crossed the following differential equation with varying coefficients: $$xy''+y'+xy=0 \\y(0)=1$$ known as the Bessel's Equation which can be solved using power series to give the solution $$y(x)=\sum_{n=0}^{+\infty}\frac{(-1)^n}{4^n(n!)^2}x^{2n}.$$ Why did this equation only require one initial condition? is it because it is not with constant coefficients?
Plugging in $x=0$ into the equation gives $y'(0)=0$, so the second initial condition follows from the equation.