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!)
A355396 Expansion of e.g.f. exp(exp(3*x)/3 - exp(x) + 2/3). 0
1, 0, 2, 8, 38, 240, 1782, 14728, 134598, 1352800, 14800502, 174593848, 2205456838, 29676417680, 423455081142, 6381678299368, 101217742764358, 1684357485887680, 29328589792496502, 533062885681064088, 10091434399407455558, 198592474864415055600 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} (3^(k-1) - 1) * binomial(n-1,k-1) * a(n-k).
a(n) ~ exp(exp(3*r)/3 - exp(r) + 2/3 - n) * (n/r)^(n + 1/2) / sqrt((1 + 3*r)*exp(3*r) - (1 + r)*exp(r)), where r = LambertW(3*n)/3 - 1/(1 + 3/LambertW(3*n) - 3^(5/3) * n^(2/3) * (1 + LambertW(3*n)) / LambertW(3*n)^(5/3)). - Vaclav Kotesovec, Jul 05 2022
a(n) ~ (3*n/LambertW(3*n))^n * exp(n/LambertW(3*n) - (n/(LambertW(3*n)/3))^(1/3) - n + 2/3) / sqrt(1 + LambertW(3*n)). - Vaclav Kotesovec, Jul 10 2022
MATHEMATICA
nmax = 20; CoefficientList[Series[Exp[Exp[3*x]/3 - Exp[x] + 2/3], {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Jun 30 2022 *)
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(exp(3*x)/3-exp(x)+2/3)))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, (3^(j-1)-1)*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A308205 A191016 A293839 * A265906 A060389 A318917
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 30 2022
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)