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!)
A358265 Expansion of e.g.f. 1/(1 - x * exp(x^3/6)). 2
1, 1, 2, 6, 28, 160, 1080, 8470, 76160, 771120, 8671600, 107245600, 1446984000, 21150929800, 332950217600, 5615507898000, 101024594070400, 1931055071545600, 39082823446867200, 834945681049480000, 18776164188349568000, 443348081412556320000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} (n - 3*k)^k/(6^k * k!).
a(n) ~ n! / ((1 + LambertW(1/2)) * (2*LambertW(1/2))^(n/3)). - Vaclav Kotesovec, Nov 13 2022
MAPLE
g := 1/(1-x*exp(x^3/6)) ;
taylor(%, x=0, 70) ;
L := gfun[seriestolist](%) ;
seq( op(i, L)*(i-1)!, i=1..nops(L)) ; # R. J. Mathar, Mar 13 2023
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1-x*exp(x^3/6))))
(PARI) a(n) = n!*sum(k=0, n\3, (n-3*k)^k/(6^k*k!));
CROSSREFS
Sequence in context: A086633 A354311 A201950 * A356633 A109570 A262002
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Nov 06 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 July 11 10:17 EDT 2024. Contains 374228 sequences. (Running on oeis4.)