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!)
A346888 Expansion of e.g.f. 1 / (1 - x^2 * exp(x) / 2). 6
1, 0, 1, 3, 12, 70, 465, 3591, 31948, 319068, 3539385, 43205635, 575312826, 8298867798, 128921967265, 2145837600375, 38097353658120, 718657756980376, 14354000800751313, 302625047150614179, 6716038666999745710, 156498725047355717250, 3820426102008414736761 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n,k) * binomial(k,2) * a(n-k).
a(n) ~ n! / ((1 + LambertW(1/sqrt(2))) * 2^(n+1) * LambertW(1/sqrt(2))^n). - Vaclav Kotesovec, Aug 08 2021
a(n) = n! * Sum_{k=0..floor(n/2)} k^(n-2*k)/(2^k * (n-2*k)!). - Seiichi Manyama, May 13 2022
MATHEMATICA
nmax = 22; CoefficientList[Series[1/(1 - x^2 Exp[x]/2), {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, k] Binomial[k, 2] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 22}]
PROG
(PARI) my(x='x+O('x^25)); Vec(serlaplace(1/(1-x^2*exp(x)/2))) \\ Michel Marcus, Aug 06 2021
(PARI) a(n) = n!*sum(k=0, n\2, k^(n-2*k)/(2^k*(n-2*k)!)); \\ Seiichi Manyama, May 13 2022
CROSSREFS
Column k=2 of A351703.
Sequence in context: A125862 A077460 A001205 * A330493 A112320 A103366
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 06 2021
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 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)