Given two polynomials
$$ p(x) = a_0 + a_1 x + a_2 x^2 + \ldots + a_{n-1}x^{n-1} \\ q(x) = b_0 + b_1 x + b_2 x^2 + \ldots + b_{n}x^{n} $$
And the series expansion from their rational polynomial
$$ \frac{p(x)}{q(x)} = c_0 + c_1 x + c_2 x^2 + \ldots $$
is it possible to recover the the original polynomials $a_n$, $b_n$ from only the series $c_n$ via the solution of a linear system?
Not uniquely. Keep in mind that $\frac{p(x)}{q(x)} = \frac{p(x)r(x)}{q(x)r(x)}$.
Also, the system of equations you would get wouldn't be linear. For instance, the first three terms, taking $b_0=1$, would be
$$ a_0 = c_0\\a_1-a_0b_1=c_1\\a_2-a_1b_1-a_0b_2+a_0b_1^2=c_2 $$