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!)
A335986 E.g.f. A(x) satisfies: A'(x) = 1 + A(1 - exp(x)). 0

%I #4 Jul 04 2020 01:44:42

%S 1,-1,-2,-2,2,12,0,-190,-696,1960,29592,49750,-1200226,-8200478,

%T 51479530,992408898,-517104450,-133585331394,-757952722052,

%U 18448429372430,284177581205280,-2033645276651570,-87779867499696610,-122540992214640738,26825921931152034414

%N E.g.f. A(x) satisfies: A'(x) = 1 + A(1 - exp(x)).

%F a(1) = 1; a(n) = Sum_{k=1..n-1} (-1)^k * Stirling2(n-1,k) * a(k).

%t terms = 25; A[_] = 0; Do[A[x_] = Normal[Integrate[1 + A[1 - Exp[x] + O[x]^(terms + 1)], x] + O[x]^(terms + 1)], terms]; CoefficientList[A[x], x] Range[0, terms]! // Rest

%t a[1] = 1; a[n_] := a[n] = Sum[(-1)^k StirlingS2[n - 1, k] a[k], {k, 1, n - 1}]; Table[a[n], {n, 1, 25}]

%Y Cf. A003659.

%K sign

%O 1,3

%A _Ilya Gutkovskiy_, Jul 03 2020

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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)