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!)
A352302 Expansion of e.g.f.: 1/(exp(x) - x^2). 3
1, -1, 3, -13, 73, -521, 4441, -44185, 502545, -6429169, 91393201, -1429101521, 24378097129, -450504733849, 8965682806809, -191174795868841, 4348171177591201, -105077942935229537, 2688685949077138657, -72618903735812907553, 2064598911185525708601 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n * (n-1) * a(n-2) - Sum_{k=1..n} binomial(n,k) * a(n-k) for n > 1.
a(n) ~ n! * (-1)^n / ((1 + LambertW(1/2)) * 2^(n+3) * LambertW(1/2)^(n+2)). - Vaclav Kotesovec, Mar 12 2022
MATHEMATICA
m = 20; Range[0, m]! * CoefficientList[Series[1/(Exp[x] - x^2), {x, 0, m}], x] (* Amiram Eldar, Mar 12 2022 *)
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(1/(exp(x)-x^2)))
(PARI) b(n, m) = if(n==0, 1, sum(k=1, n, (-1+(k==m)*m!)*binomial(n, k)*b(n-k, m)));
a(n) = b(n, 2);
CROSSREFS
Cf. A346269.
Sequence in context: A318617 A059294 A124468 * A205572 A128196 A367747
KEYWORD
sign
AUTHOR
Seiichi Manyama, Mar 11 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 23 02:53 EDT 2024. Contains 371906 sequences. (Running on oeis4.)