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!)
A335981 Expansion of e.g.f. exp(3 * (1 - exp(-x)) + x). 3
1, 4, 13, 31, 40, -23, -95, 490, 823, -8393, 3766, 174775, -658787, -2751404, 34033297, -55552037, -1170734432, 9362348365, 3277050925, -562286419646, 3848880970147, 8815342530739, -356804325202730, 2389771436686339, 8677476137729929, -302470260552857660 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = exp(3) * (-1)^n * Sum_{k>=0} (-3)^k * (k - 1)^n / k!.
a(0) = 1; a(n) = a(n-1) + 3 * Sum_{k=0..n-1} (-1)^(n-k-1) * binomial(n-1,k) * a(k).
MATHEMATICA
nmax = 25; CoefficientList[Series[Exp[3 (1 - Exp[-x]) + x], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = a[n - 1] + 3 Sum[(-1)^(n - k - 1) Binomial[n - 1, k] a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 25}]
CROSSREFS
Sequence in context: A075880 A042487 A154753 * A191189 A106302 A158842
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 7 14:53 EDT 2024. Contains 372310 sequences. (Running on oeis4.)