OFFSET
0,2
COMMENTS
The unsigned version of this sequence, A246062, has g.f.: sqrt( (1 + sqrt(1+8*x)) / (1 + sqrt(1-8*x)) ).
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..1000
FORMULA
G.f.: ( 2*(sqrt(1+64*x^2) + 8*x)/(sqrt(1+64*x^2) + 1) )^(1/4).
G.f. A(x) = 1/G(x) where G(x) is the g.f. of A193619.
EXAMPLE
G.f.: A(x) = 1 + 2*x - 2*x^2 - 28*x^3 + 54*x^4 + 860*x^5 - 2004*x^6 +...
where
A(x)^2 = 1 + 4*x - 64*x^3 + 2048*x^5 - 81920*x^7 + 3670016*x^9 +...
and
A(x)^-2 = 1 - 4*x + 16*x^2 - 256*x^4 + 8192*x^6 - 327680*x^8 +...
PROG
(PARI) {a(n)=local(Ox=x*O(x^n), A=(2*(sqrt(1+64*x^2+Ox)+8*x)/(sqrt(1+64*x^2+Ox)+1))^(1/4)); polcoeff(A, n)}
(PARI) N=40; x='x+O('x^N); Vec(sqrt(2/(1-8*x+sqrt(1+64*x^2)))) \\ Seiichi Manyama, Aug 26 2020
CROSSREFS
KEYWORD
sign
AUTHOR
Paul D. Hanna, Aug 01 2011
STATUS
approved