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!)
A360473 E.g.f. satisfies A(x) = exp( x * exp(x) * A(x)^2 ). 8
1, 1, 7, 82, 1441, 34036, 1013149, 36446698, 1538703457, 74607811048, 4086635087701, 249593193648646, 16819085803158577, 1239637405609740268, 99206330021667838285, 8567230421555333516746, 794104205843228382969409 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = Sum_{k=0..n} k^(n-k) * (2*k+1)^(k-1) * binomial(n,k).
E.g.f.: A(x) = exp( -LambertW(-2*x * exp(x))/2 ).
E.g.f.: A(x) = sqrt( -LambertW(-2*x * exp(x)) / (2*x * exp(x)) ).
E.g.f.: A(x) = sqrt( Sum_{k>=0} (k+1)^(k-1) * (2*x * exp(x))^k / k! ).
a(n) ~ sqrt(1 + LambertW(exp(-1)/2)) * n^(n-1) / (2 * exp(n - 1/2) * LambertW(exp(-1)/2)^n). - Vaclav Kotesovec, Feb 17 2023
MATHEMATICA
nmax = 20; A[_] = 1;
Do[A[x_] = Exp[x*Exp[x]*A[x]^2] + O[x]^(nmax+1) // Normal, {nmax}];
CoefficientList[A[x], x]*Range[0, nmax]! (* Jean-François Alcover, Mar 04 2024 *)
PROG
(PARI) a(n) = sum(k=0, n, k^(n-k)*(2*k+1)^(k-1)*binomial(n, k));
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(-lambertw(-2*x*exp(x))/2)))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sqrt(-lambertw(-2*x*exp(x))/(2*x*exp(x)))))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sqrt(sum(k=0, N, (k+1)^(k-1)*(2*x*exp(x))^k/k!))))
CROSSREFS
Sequence in context: A367424 A268653 A364939 * A242375 A333984 A244821
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 08 2023
STATUS
approved

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 July 16 10:51 EDT 2024. Contains 374345 sequences. (Running on oeis4.)