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”).

A171188
G.f. satisfies: AGM(1,A(x)) = 1 + 4*x.
1
1, 8, 8, -16, 48, -160, 528, -1600, 3952, -4512, -31040, 322496, -2021584, 10452384, -47768512, 196396032, -719709808, 2244001312, -5014625888, -511332480, 96425281504, -773680460288, 4504107424128, -22283547559808, 97629901795824
OFFSET
0,2
EXAMPLE
G.f.: A(x) = 1 + 8*x + 8*x^2 - 16*x^3 + 48*x^4 - 160*x^5 + 528*x^6 +...
A(x)^(1/2) = 1 + 4*x - 4*x^2 + 8*x^3 - 16*x^4 + 16*x^5 + 104*x^6 +...
(1+A(x))/2 = 1 + 4*x + 4*x^2 - 8*x^3 + 24*x^4 - 80*x^5 + 264*x^6 +...
PROG
(PARI) {a(n)=local(A=1+8*x+sum(m=2, n-1, a(m)*x^m)+x^2*O(x^n)); if(n<2, polcoeff(A, n), -2*polcoeff(agm(1, A), n))}
CROSSREFS
Cf. A171189.
Sequence in context: A309461 A245420 A022091 * A145909 A168409 A135405
KEYWORD
sign
AUTHOR
Paul D. Hanna, Dec 11 2009
STATUS
approved