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!)
A307135 E.g.f. A(x) satisfies: d/dx A(x) = 1 + A(x*exp(-x)). 0
1, 1, -1, -4, 28, -57, -1083, 21471, -227625, 5520, 86174720, -3173050975, 75628524701, -767388080795, -51335279965137, 4735502400094008, -256809556499479624, 9917182521618152375, -139386576755496491719, -23350708366359596018589, 3390048061391916232664831 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
Recurrence: a(n+1) = Sum_{k=1..n} binomial(n,k)*(-k)^(n-k)*a(k).
MATHEMATICA
terms = 21; A[_] = 0; Do[A[x_] = Normal[Integrate[1 + A[x Exp[-x] + O[x]^(terms + 1)], x] + O[x]^(terms + 1)], terms]; Rest[CoefficientList[A[x], x] Range[0, terms]!]
a[n_] := a[n] = Sum[Binomial[n - 1, k] (-k)^(n - k - 1) a[k], {k, 1, n - 1}]; a[1] = 1; Table[a[n], {n, 1, 21}]
CROSSREFS
Sequence in context: A061428 A069518 A151912 * A101002 A197542 A203280
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, May 04 2019
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:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)