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!)
A307874 E.g.f. A(x) satisfies: d/dx A(x) = 1 + A(log(1+x)). 4
1, 1, 0, -1, 4, -12, -3, 640, -9721, 107849, -766116, -5716810, 438016259, -13557651987, 318299775147, -5284369281919, -5483686862123, 6119663470743306, -388801742002632589, 17841761552418336070, -645131407697518621805, 14383670984970068901209, 384858376828629625293001 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
FORMULA
Recurrence: a(n+1) = Sum_{k=1..n} Stirling1(n,k) * a(k).
MATHEMATICA
terms = 23; A[_] = 0; Do[A[x_] = Normal[Integrate[1 + A[Log[1 + x] + O[x]^(terms + 1)], x] + O[x]^(terms + 1)], terms]; Rest[CoefficientList[A[x], x] Range[0, terms]!]
a[n_] := a[n] = Sum[StirlingS1[n - 1, k] a[k], {k, 1, n - 1}]; a[1] = 1; Table[a[n], {n, 1, 23}]
PROG
(PARI) a_vector(n) = my(v=vector(n)); v[1]=1; for(i=1, n-1, v[i+1]=sum(j=1, i, stirling(i, j, 1)*v[j])); v; \\ Seiichi Manyama, Jun 24 2022
CROSSREFS
Sequence in context: A317555 A213343 A308518 * A230057 A205124 A224512
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, May 02 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 25 11:06 EDT 2024. Contains 371967 sequences. (Running on oeis4.)