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!)
A337062 E.g.f.: exp(1 + x^2/2 - exp(x)). 1
1, -1, 1, -2, 4, -7, 21, -51, 113, -498, 1088, -3335, 21407, -14653, 232389, -1275288, -3636526, -44468245, -7468609, 700603965, 12178055777, 67189448344, 175549544778, -2432123216941, -36279392911507, -287078642854853, -945866835928323 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = -a(n-1) - Sum_{k=3..n} binomial(n-1,k-1) * a(n-k).
a(n) = Sum_{k=0..floor(n/2)} binomial(n,2*k) * (2*k-1)!! * A000587(n-2*k).
MATHEMATICA
nmax = 26; CoefficientList[Series[Exp[1 + x^2/2 - Exp[x]], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = -a[n - 1] - Sum[Binomial[n - 1, k - 1] a[n - k], {k, 3, n}]; Table[a[n], {n, 0, 26}]
Table[Sum[Binomial[n, 2 k] (2 k - 1)!! BellB[n - 2 k, -1], {k, 0, Floor[n/2]}], {n, 0, 26}]
CROSSREFS
Sequence in context: A188497 A237759 A306978 * A153550 A102984 A103017
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Aug 13 2020
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 24 22:16 EDT 2024. Contains 371963 sequences. (Running on oeis4.)