OFFSET
0,3
FORMULA
C(x)^2 - S(x)^2 = 1 and C(x) = 1 + Integral C(x)^7*S(x) dx, where S(x) is described by A281439.
MATHEMATICA
a[n_] := Module[{S = x, C = 1, C8, SC7}, For[i = 0, i <= n, i++, C8 = C^8 + x*O[x]^(2n) // Normal; S = Integrate[C8, x]; SC7 = S*C^7 + O[x]^(2n) // Normal; C = 1+Integrate[SC7, x]]; (2n)!*Coefficient[C, x, 2n]]; Array[a, 17, 0] (* Jean-François Alcover, Mar 01 2017, translated from Pari *)
PROG
(PARI) {a(n) = my(S=x, C=1); for(i=0, n, S = intformal( C^8 +x*O(x^(2*n))); C = 1 + intformal( S*C^7 ) ); (2*n)!*polcoeff(C, 2*n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 21 2017
STATUS
approved