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!)
A351929 Expansion of e.g.f. exp(x - x^3/6). 4
1, 1, 1, 0, -3, -9, -9, 36, 225, 477, -819, -10944, -37179, 16875, 870507, 4253796, 2481921, -101978919, -680495175, -1060229088, 16378166061, 145672249311, 368320357791, -3415036002300, -40270115077983, -141926533828299, 882584266861701, 13970371667206176 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} (-1/6)^k * binomial(n-2*k,k)/(n-2*k)!.
a(n) = a(n-1) - binomial(n-1,2) * a(n-3) for n > 2.
MATHEMATICA
m = 27; Range[0, m]! * CoefficientList[Series[Exp[x - x^3/6], {x, 0, m}], x] (* Amiram Eldar, Feb 26 2022 *)
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(x-x^3/6)))
(PARI) a(n) = n!*sum(k=0, n\3, (-1/3!)^k*binomial(n-2*k, k)/(n-2*k)!);
(PARI) a(n) = if(n<3, 1, a(n-1)-binomial(n-1, 2)*a(n-3));
CROSSREFS
Sequence in context: A125824 A203558 A223653 * A238912 A038227 A080292
KEYWORD
sign
AUTHOR
Seiichi Manyama, Feb 26 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 22 12:22 EDT 2024. Contains 374499 sequences. (Running on oeis4.)