The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A335980 Expansion of e.g.f. exp(2 * (1 - exp(-x)) + x). 3
1, 3, 7, 11, 7, -5, 23, 75, -281, -101, 4663, -14229, -41721, 532667, -1464489, -8840053, 103689511, -313202725, -2348557705, 32041266859, -127039882425, -762423051013, 14393151011735, -81523161874741, -236027974047897, 8564406463119387 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = exp(2) * (-1)^n * Sum_{k>=0} (-2)^k * (k - 1)^n / k!.
a(0) = 1; a(n) = a(n-1) + 2 * Sum_{k=0..n-1} (-1)^(n-k-1) * binomial(n-1,k) * a(k).
MATHEMATICA
nmax = 25; CoefficientList[Series[Exp[2 (1 - Exp[-x]) + x], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = a[n - 1] + 2 Sum[(-1)^(n - k - 1) Binomial[n - 1, k] a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 25}]
PROG
(PARI) my(N=33, x='x+O('x^N)); Vec(serlaplace(exp(2 * (1 - exp(-x)) + x))) \\ Joerg Arndt, Jul 04 2020
CROSSREFS
Sequence in context: A125255 A125254 A093931 * A153788 A167486 A260408
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jul 03 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 May 21 17:21 EDT 2024. Contains 372738 sequences. (Running on oeis4.)