(PARI) {a(n)=local(A=1); for(i=0, n, A=1+intformal(A^7*subst(A^2, x, -x) +x*O(x^n) )); n!*polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
(PARI) {a(n)=local(A=1); A=1/(1-4*serreverse(intformal((1-16*x^2 +x*O(x^n))^(2/4))))^(1/4); n!*polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))