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!)
A309775 Expansion of e.g.f. exp(2 * (1 - exp(x)) + x). 3
1, -1, -1, 3, 7, -13, -89, -45, 1191, 4723, -6873, -143597, -499289, 1843891, 28132391, 104223059, -508838745, -8597456141, -39770287321, 158845792147, 3788893515687, 23979078221619, -38626203043289, -2200108609291821, -19878849864738137, -27269435066568845 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1 and a(n) = a(n-1) - 2 * Sum_{k=0..n-1} binomial(n-1,k) * a(k) for n > 0.
a(n) = exp(2) * Sum_{k>=0} (k + 1)^n * (-2)^k / k!.
a(n) = Sum_{k=0..n} binomial(n,k) * Bell(k, -2). - Vaclav Kotesovec, Jul 06 2020
MATHEMATICA
m = 25; Range[0, m]! * CoefficientList[Series[Exp[2 * (1 - Exp[x]) + x], {x, 0, m}], x] (* Amiram Eldar, Jul 06 2020 *)
Table[Sum[Binomial[n, k] * BellB[k, -2], {k, 0, n}], {n, 0, 30}] (* Vaclav Kotesovec, Jul 06 2020 *)
PROG
(PARI) N=40; x='x+O('x^N); Vec(serlaplace(exp(2*(1-exp(x))+x)))
CROSSREFS
Column k=2 of A335977.
Cf. A335980.
Sequence in context: A028491 A137474 A071087 * A038691 A237890 A082718
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jul 06 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 July 29 12:10 EDT 2024. Contains 374734 sequences. (Running on oeis4.)