A362351 a(n) = n! * Sum_{k=0..floor(n/3)} (k/6)^k / (k! * (n-3*k)!).
1, 1, 1, 2, 5, 11, 61, 316, 1177, 11005, 84121, 434446, 5642781, 56725527, 374014005, 6211205456, 77331975281, 620174850521, 12539310726577, 186125334960730, 1757911008913141, 41887694462674691, 721886016954223661, 7846403629258814852, 215270385425700640905
Offset: 0
Keywords
Links
- Winston de Greef, Table of n, a(n) for n = 0..469
- Eric Weisstein's World of Mathematics, Lambert W-Function.
Programs
-
PARI
my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x)/(1+lambertw(-x^3/6))))
Formula
E.g.f.: exp(x) / (1 + LambertW(-x^3/6)).
a(n) ~ n^n * (exp(6^(1/3)*exp(-1/3)) + 2*cos(2^(-2/3)*3^(5/6)*exp(-1/3) - 2*Pi*n/3) / exp(2^(-2/3)*3^(1/3)*exp(-1/3))) / (2^(n/3) * 3^(n/3 + 1/2) * exp(2*n/3)). - Vaclav Kotesovec, Apr 18 2023