OFFSET
1,4
COMMENTS
The fractions a(2n-1)/a(2n) form a monotonically decreasing sequence with the limit being 1/e = 0.3678794411714.... What is the rate of growth of the terms?
EXAMPLE
1/(1-x) = e^[(1/1)*x*e^[(1/2)*x*e^[(5/12)*x*e^[(47/120)*x*e^[...]]]]
MATHEMATICA
a[0, _] = 1; a[n_, m_:0] := a[n, m] = (a[n-1, m+1] - Sum[k a[n, k-1] a[n-1, m-k+1], {k, m}]/(m+1))/a[n-1, 0]; Table[NumeratorDenominator[a[n]], {n, 10}] // Flatten (* Vladimir Reshetnikov, Dec 23 2021 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 06 2002
EXTENSIONS
Terms from a(11) through a(16) were supplied by David W. Cantrell (DWCantrell(AT)sigmaxi.net)
STATUS
approved