OFFSET
0,2
COMMENTS
Also denominators of coefficients in function a(x) such that a(a(a(x))) = sinh x.
REFERENCES
W. C. Yang, Composition equations, preprint, 1999.
MATHEMATICA
n = 13; m = 2 n - 1 (* m = maximal degree *); a[x_] = Sum[c[k] x^k, {k, 1, m, 2}] ; coes = DeleteCases[ CoefficientList[Series[a @ a @ a @ x - Sin[x], {x, 0, m}], x] // Rest , 0]; Do[s[k] = Solve[coes[[1]] == 0] // First; coes = coes /. s[k] // Rest, {k, 1, n}]
(CoefficientList[a[x] /. Flatten @ Array[s, n], x] // Denominator // Partition[#, 2] &)[[All, 2]]
(* Jean-François Alcover, May 04 2011 *)
CROSSREFS
KEYWORD
nonn,frac,easy,nice
AUTHOR
N. J. A. Sloane, Jan 22 2000
EXTENSIONS
More terms from Vladeta Jovovic, Jul 16 2002
STATUS
approved