login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A052105 Denominators of coefficients in function a(x) such that a(a(x)) = exp(x) - 1. 3
1, 1, 4, 48, 1, 3840, 92160, 645120, 3440640, 30965760, 14863564800, 24222105600, 7847962214400, 40809403514880, 5713316492083200, 7617755322777600, 5484783832399872000, 5328075722902732800, 1220613711064989696000 (list; graph; refs; listen; history; internal format)
OFFSET

0,3

REFERENCES

R. P. Stanley, Enumerative Combinatorics, Cambridge, Vol. 2, 1999; see Problem 6.52.

EXAMPLE

x+1/4*x^2+1/48*x^3+1/3840*x^5-7/92160*x^6+1/645120*x^7+...

MATHEMATICA

a[x_, n_] := Sum[c[k] x^k, {k, 0, n}] ;

f[x_, n_] := Series[Exp[x] - 1, {x, 0, n}] // Normal;

b[x_, n_] := Series[a[a[x, n], n], {x, 0, n}] // Normal;

eq[n_] := Thread[CoefficientList[f[x, n] - b[x, n], x] == 0] // Rest;

c[0] = 0; so[3] = Solve[eq[3], {c[1], c[2], c[3]}] // First;

so[n_] := so[n] = Solve[eq[n] /. Flatten[Table[so[k], {k, 3, n - 1}]], c[n]] // First

Array[c, 19, 0] /. Flatten[Table[so[k], {k, 3, 19}]] // Denominator

(* From Jean-François Alcover, Jun 8 2011 *)

CROSSREFS

Cf. A052104, A052122, A052123.

Sequence in context: A006422 A186677 A006438 * A010293 A178429 A157818

Adjacent sequences:  A052102 A052103 A052104 * A052106 A052107 A052108

KEYWORD

nonn,easy,nice,frac

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com), Jan 22 2000

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 21:51 EST 2012. Contains 205978 sequences.