The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A361594 Expansion of e.g.f. exp( (x / (1-x))^2 ) / (1-x). 1
1, 1, 4, 24, 180, 1620, 17040, 204960, 2770320, 41504400, 681791040, 12173293440, 234555773760, 4847900016960, 106932303878400, 2506094618227200, 62165827044921600, 1626693694039814400, 44767280999939097600, 1292282276155782912000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n! * Sum_{k=0..floor(n/2)} binomial(n,2*k)/k!.
From Vaclav Kotesovec, Mar 17 2023: (Start)
a(n) = (3*n - 2)*a(n-1) - 3*(n-2)*(n-1)*a(n-2) + (n-2)^2*(n-1)*a(n-3).
a(n) ~ 2^(-1/6) * 3^(-1/2) * exp(1/3 - 2^(-1/3)*n^(1/3) + 3*2^(-2/3)*n^(2/3) - n) * n^(n + 1/6) * (1 + 11*2^(1/3)/(27*n^(1/3)) - 79/(3645*2^(1/3)*n^(2/3))). (End)
MATHEMATICA
Table[n! * Sum[Binomial[n, 2*k]/k!, {k, 0, n/2}], {n, 0, 20}] (* Vaclav Kotesovec, Mar 17 2023 *)
With[{nn=20}, CoefficientList[Series[Exp[(x/(1-x))^2]/(1-x), {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Oct 29 2023 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp((x/(1-x))^2)/(1-x)))
CROSSREFS
Cf. A052887.
Sequence in context: A243689 A309637 A168452 * A061720 A197472 A152403
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 16 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 May 15 11:10 EDT 2024. Contains 372540 sequences. (Running on oeis4.)