login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A228927
G.f. A(x) satisfies: A(x)^16 = A(x^2)^8 + 16*x.
1
1, 1, -7, 70, -798, 9737, -124124, 1631041, -21911758, 299371219, -4144898772, 58007463920, -819038646307, 11650826921489, -166786290656152, 2400680788969898, -34719393978035312, 504223005531434252, -7349846348644213981, 107489242662154350550
OFFSET
0,3
EXAMPLE
G.f.: A(x) = 1 + x - 7*x^2 + 70*x^3 - 798*x^4 + 9737*x^5 - 124124*x^6 +...
where
A(x)^16 = 1 + 16*x + 8*x^2 - 28*x^4 + 224*x^6 - 2198*x^8 + 23856*x^10 -+...
A(x^2)^8 = 1 + 8*x^2 - 28*x^4 + 224*x^6 - 2198*x^8 + 23856*x^10 -+...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, #binary(n), A=(subst(A, x, x^2)^8+16*x+x*O(x^n))^(1/16)); polcoeff(A, n, x)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Cf. A228928.
Cf. variants: A107086, A223026.
Sequence in context: A180902 A078246 A268301 * A097184 A002296 A027394
KEYWORD
sign
AUTHOR
Paul D. Hanna, Sep 08 2013
STATUS
approved