I have to solve this non-linear DE
$y' -e^y -x^2 = 0 , y(0)=c$
using powerseries.
$y(x) = \sum_{n=0}^\infty a_{n}x^n $
$y'(x) = \sum_{n=1}^\infty na_{n}x^{n-1} $
so we get
$\sum_{n=1}^\infty na_{n}x^{n-1} -e^{\sum_{n=0}^\infty a_{n}x^n} -x^2 = 0 $
changing the sum indexes
$\sum_{n=0}^\infty (n+1)a_{n+1}x^{n} -e^{\sum_{n=0}^\infty a_{n}x^n} -x^2 = 0 $
I want to find the recurrence relation of the coefficients. But i cannot merge/group them into the same sum, meaning, the sum of $y'(x) = \sum_{n=1}^\infty na_{n}x^{n-1} $ and the sum of $y(x) = \sum_{n=0}^\infty a_{n}x^n $ cause it is power of $e$ in order to get the equality of them with $0$.