[go: up one dir, main page]

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!)
Search: a140055 -id:a140055
Displaying 1-2 of 2 results found. page 1
     Sort: relevance | references | number | modified | created      Format: long | short | data
A140049 E.g.f. A(x) satisfies: A( x*exp(-x*A(x)) ) = exp(x*A(x)). +0
2
1, 1, 5, 55, 1005, 26601, 941863, 42372177, 2336926665, 153927536545, 11869936146891, 1055015092106889, 106731589524249517, 12163935655214359329, 1548324822731892094191, 218516875165035215308801, 33979477899236956531288977, 5790103152487972170694748097 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = A140054(n+1)/(n+1).
E.g.f.: A(x) = exp(G(x)) where G(x) = e.g.f. of A140055.
E.g.f. satisfies: A(x) = exp( x*A(x) * A(x*A(x)) ).
From Paul D. Hanna, Jul 09 2009: (Start)
E.g.f. satisfies: A(x) = exp(x*A(x)*A(x*A(x))).
...
Let A(x)^m = Sum_{n>=0} a(n,m)*x^n/n! with a(0,m)=1, then
a(n,m) = Sum_{k=0..n} C(n,k) * m*(n+m)^(k-1) * a(n-k,k).
...
Let log(A(x)) = x*A(x*A(x)) = Sum_{n>=1} L(n)*x^n/n!, then
L(n) = Sum_{k=1..n} C(n,k) * n^(k-1) * a(n-k,k).
(End)
EXAMPLE
A(x) = 1 + x + 5*x^2/2! + 55*x^3/3! + 1005*x^4/4! + 26601*x^5/5! +...
Log(A(x)) = G(x) = e.g.f. of A140055:
Log(A(x)) = x + 4*x^2/2! + 42*x^3/3! + 764*x^4/4! + 20400*x^5/5! +...
MAPLE
b:= proc(n, k) option remember; `if`(n=0, 1/k, add(k*j
*b(j-1, j)*b(n-j, k)*binomial(n-1, j-1), j=1..n))
end:
a:= n-> b(n, n+1):
seq(a(n), n=0..20); # Alois P. Heinz, Aug 21 2019
MATHEMATICA
m = 18; A[_] = 0;
Do[A[x_] = Exp[x A[x] A[x A[x]]] + O[x]^m // Normal, {m}];
CoefficientList[A[x], x] * Range[0, m-1]! (* Jean-François Alcover, Oct 03 2019 *)
PROG
(PARI) {a(n)=local(A=x); for(i=0, n, A=serreverse(x*exp(-A+x*O(x^n)))); n!*polcoeff(A, n+1)}
(PARI) {a(n)=local(A=x); for(i=0, n, A=x*exp(subst(A, x, A+x*O(x^n)))); n!*polcoeff(A, n+1)}
From Paul D. Hanna, Jul 09 2009: (Start)
(PARI) {a(n, m=1)=if(n==0, 1, if(m==0, 0^n, sum(k=0, n, binomial(n, k)*m*(n+m)^(k-1)*a(n-k, k))))}
(PARI) /* Log(A(x)) = x*A(x*A(x)) = Sum_{n>=1} L(n)*x^n/n! where: */
{L(n)=if(n<1, 0, sum(k=1, n, binomial(n, k)*n^(k-1)*a(n-k, k)))} (End)
CROSSREFS
Cf. A162659. [From Paul D. Hanna, Jul 09 2009]
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 06 2008
STATUS
approved
A140054 E.g.f. A(x) satisfies: A( x*exp(-A(x)) ) = x. +0
4
1, 2, 15, 220, 5025, 159606, 6593041, 338977416, 21032339985, 1539275365450, 130569297615801, 12660181105282668, 1387510663815243721, 170295099173001030606, 23224872340978381412865, 3496270002640563444940816, 577651124287028261031912609, 104221856744783499072505465746 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Unsigned version of A087962.
Not the same as A178533.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..282 (first 75 terms from Paul D. Hanna)
FORMULA
E.g.f. A(x) satisfies:
(1) A(x) = x*exp( A(A(x)) ).
(2) A(x) = x*exp( A(x)*exp( A(A(x))*exp( A(A(A(x)))*exp( ...)))) (infinite exponential tower).
(3) Let A_{n}(x) denote n-th iteration of e.g.f. A(x) with A_0(x)=x,
then
(3.a) A_{n+1}(x) = A( A_{n}(x) ) = A_{n}(x) * exp( A_{n+2}(x) );
(3.b) A_{n}(x) = x*exp( Sum_{k=2..n+1} A_{k}(x) ).
(4) exp(-A(x)) = G(x) where G(x*G(x)) = exp(-x) and G(-x) = e.g.f. of A087961.
a(n)=n!*T(n,1), T(n,m)=m/n*sum(T(n-m,k)*n^k/k!,k,1,n-m), n>m, T(n.n)=1. [Vladimir Kruchinin, May 06 2012]
EXAMPLE
E.g.f.: A(x) = x + 2*x^2/2! + 15*x^3/3! + 220*x^4/4! + 5025*x^5/5! +...
Related expansions are:
exp(-A(x)) = 1 - x - x^2/2! - 10*x^3/3! - 159*x^4/4! - 3816*x^5/5! -...
A(A(x)) = x + 4*x^2/2! + 42*x^3/3! + 764*x^4/4! + 20400*x^5/5! +...
A(A(A(x))) = x + 6*x^2/2! + 81*x^3/3! + 1776*x^4/4! + 55125*x^5/5! +...
A(A(A(A(x)))) = x + 8*x^2/2! + 132*x^3/3! + 3400*x^4/4! + 121080*x^5/5! +...
Iterations of A(x) obey the relation illustrated by:
A(x) = x*exp( A(A(x)) );
A(A(x)) = x*exp( A(A(x)) + A(A(A(x))) );
A(A(A(x))) = x*exp( A(A(x)) + A(A(A(x))) + A(A(A(A(x)))) ).
...
MAPLE
b:= proc(n, k) option remember; `if`(n=0, 1/k, add(k*
b(j-1, j)*j*b(n-j, k)*binomial(n-1, j-1), j=1..n))
end:
a:= n-> b(n-1, n)*n:
seq(a(n), n=1..20); # Alois P. Heinz, Aug 21 2019
MATHEMATICA
b[n_, k_] := b[n, k] = If[n == 0, 1/k, Sum[k*b[j - 1, j]*j*b[n - j, k]* Binomial[n - 1, j - 1], {j, 1, n}]];
a[n_] := b[n - 1, n]*n;
a /@ Range[1, 20] (* Jean-François Alcover, Oct 03 2019, after Alois P. Heinz *)
PROG
(PARI) {a(n)=local(A=x); for(i=0, n, A=serreverse(x*exp(-A+x*O(x^n)))); n!*polcoeff(A, n)}
for(n=1, 20, print1(a(n), ", "))
(PARI) {a(n)=local(A=x); for(i=0, n, A=x*exp(subst(A, x, A+x*O(x^n)))); n!*polcoeff(A, n)}
for(n=1, 20, print1(a(n), ", "))
(Maxima) A(n, m):=if n=m then 1 else m/n*sum(A(n-m, k)*n^k/k!, k, 1, n-m);
makelist(n!*A(n, 1), n, 1, 10); [Vladimir Kruchinin, May 06 2012]
CROSSREFS
Cf. A087962 (A(-x)), A087961 (exp(-A(-x))), A140055 (A(A(x))).
Cf. A178533.
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 03 2008
STATUS
approved
page 1

Search completed in 0.006 seconds

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 August 29 17:19 EDT 2024. Contains 375518 sequences. (Running on oeis4.)