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!)
A367743 Expansion of e.g.f. exp(1 - x - exp(2*x)). 2
1, -3, 5, 1, -7, -75, -99, 1241, 10161, 18989, -332299, -3857551, -14440151, 141168997, 2807256333, 20182451657, -42073176479, -2999363709091, -38439478980891, -161835672017439, 3439471815545177, 87228227501354517, 937579822282327421, 216540362854403513, -198501712690150659055 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = exp(1) * Sum_{k>=0} (-1)^k * (2*k-1)^n / k!.
a(0) = 1; a(n) = -a(n-1) - Sum_{k=1..n} binomial(n-1,k-1) * 2^k * a(n-k).
a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n,k) * 2^k * A000587(k).
MATHEMATICA
nmax = 24; CoefficientList[Series[Exp[1 - x - Exp[2 x]], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = -a[n - 1] - Sum[Binomial[n - 1, k - 1] 2^k a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 24}]
Table[Sum[(-1)^(n - k) Binomial[n, k] 2^k BellB[k, -1], {k, 0, n}], {n, 0, 24}]
CROSSREFS
Sequence in context: A353413 A318190 A289714 * A242390 A065395 A236631
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Nov 29 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 August 12 16:35 EDT 2024. Contains 375113 sequences. (Running on oeis4.)