OFFSET
0,6
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..1000 (terms up to n=200 from Vincenzo Librandi)
MATHEMATICA
m = 60; A[_] = 1;
Do[A[x_] = 1 + x A[x]/A[x^2] + O[x]^m // Normal, {m}];
CoefficientList[A[x], x] (* Jean-François Alcover, Oct 04 2019 *)
PROG
(PARI)
N=66; R=O('x^N); x='x+R;
F = 1 + x;
for (k=1, N+1, F = 1 + x * F / subst(F, 'x, 'x^2) + R; );
Vec(F)
CROSSREFS
KEYWORD
sign
AUTHOR
Joerg Arndt, Oct 19 2012
STATUS
approved