I'm required to solve the recurrence $y_{n+1} = 2y_n + n$ using an exponential generating series, and am getting stuck in a particular step. I solved it already using the OGS so I think I'm on the right track. Here's what I have so far:
$$ EGS: Y(x) = \sum_{n=0}^{\infty}\frac {y_nx^n} {n!} $$ $$ \sum_{n=0}^{\infty} \frac {y_{n+1}x^n} {n!} = \sum_{n=0}^{\infty} \frac{(2y_n+n)x^n} {n!} = 2\sum_{n=0}^{\infty} \frac {y_nx^n} { n!} + \sum_{n=0}^{\infty} \frac{n x^n} {n!} $$
Now the problem that I'm having is reducing this to a differential equation due to the last term. I know that $ e^x = \sum_{n=0}^{\infty} \frac{ x^n} {n!} $ , but I'm not sure what to do with the extra "n" term in this problem. I can reduce it to $$ \sum_{n=0}^{\infty} \frac{n x^n} {n!} = \sum_{n=0}^{\infty} \frac{ x^n} {(n-1)!} = \sum_{n=0}^{\infty} \frac{x* x^n} {n!} $$ ( I think ).
I'm not 100% sure what method to use here, possibly a Taylor Series or something? Any help is greatly appreciated. Thanks!