The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A052104 Numerators of coefficients of the formal power series a(x) such that a(a(x)) = exp(x) - 1. 4

%I #55 Nov 29 2021 07:48:06

%S 0,1,1,1,0,1,-7,1,53,-281,-1231,87379,-13303471,-54313201,10142361989,

%T 2821265977,-10502027401553,1836446156249,2952828271088741,

%U -1004826382596003137,-7006246797736924249,14607119841651449406947,1868869263315549659372569

%N Numerators of coefficients of the formal power series a(x) such that a(a(x)) = exp(x) - 1.

%D R. P. Stanley, Enumerative Combinatorics, Cambridge, Vol. 2, 1999; see Problem 5.52c.

%H Alois P. Heinz, <a href="/A052104/b052104.txt">Table of n, a(n) for n = 0..120</a>

%H I. N. Baker, <a href="http://dx.doi.org/10.1007/BF01187396">Zusammensetzungen ganzer Funktionen</a> Math. Z. 69 (1) (1958) 121-163.

%H Dmitry Kruchinin and Vladimir Kruchinin, <a href="http://arxiv.org/abs/1302.1986">Method for solving an iterative functional equation A^{2^n}(x)=F(x)</a>, arXiv:1302.1986 [math.CO], 2013.

%H Mathoverflow, <a href="http://mathoverflow.net/questions/4347/ffxexpx-1-and-other-functions-just-in-the-middle-between-linear-and-expo">f(f(x))=exp(x)-1 and...</a>

%F a(n) = numerator(T(n,1)) where T(n, m) = if n=m then 1, otherwise ( StirlingS2(n, m)*m!/n! - Sum_{i=m+1..n-1} T(n, i) * T(i, m)))/2. - _Vladimir Kruchinin_, Nov 08 2011

%e a(x) = x + x^2/4 + x^3/48 + x^5/3840 - 7*x^6/92160 + x^7/645120 + ...

%p T:= proc(n, m) T(n, m):= `if`(n=m, 1, (Stirling2(n, m)*m!/n!-

%p add(T(n,i)*T(i,m), i=m+1..n-1))/2)

%p end:

%p a:= n-> numer(T(n, 1)):

%p seq(a(n), n=0..30); # _Alois P. Heinz_, Feb 11 2013

%t T[n_, n_] = 1; T[n_, m_] := T[n, m] = (StirlingS2[n, m]*m!/n! - Sum[T[n, i]*T[i, m], {i, m+1, n-1}])/2; Table[T[n, 1] // Numerator, {n, 0, 30}] (* _Jean-François Alcover_, Mar 03 2014, after _Alois P. Heinz_ *)

%o (Sage)

%o @CachedFunction

%o def T(n,k):

%o if (k==n): return 1

%o else: return ( (factorial(k)/factorial(n))*stirling_number2(n,k) - sum(T(n,j)*T(j,k) for j in (k+1..n-1)) )/2

%o [numerator(T(n,1)) for n in (0..30)] # _G. C. Greubel_, Apr 15 2021

%Y Cf. A052105, A052122, A052123.

%K sign,nice,easy,frac

%O 0,7

%A _N. J. A. Sloane_, Jan 22 2000

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 8 12:22 EDT 2024. Contains 373217 sequences. (Running on oeis4.)