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!)
A307355 E.g.f. A(x) satisfies: d/dx A(x) = 1 + A(x/(1 + x)). 1
1, 1, -1, -1, 23, -197, 1093, 5377, -374863, 9934889, -195976201, 2134159519, 67270069831, -6730482201869, 365726633654957, -15494292929032063, 458469986808144737, 2828723973314497873, -2067360599320208561297, 238687490584532161293631, -20425982116564721266720009 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
FORMULA
Recurrence: a(n+1) = Sum_{k=1..n} (-1)^(n-k)*binomial(n-1,k-1)*a(k)*n!/k!.
MATHEMATICA
terms = 21; A[_] = 0; Do[A[x_] = Normal[Integrate[1 + A[x/(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[(-1)^(n - k - 1) Binomial[n - 2, k - 1] a[k] (n - 1)!/k!, {k, 1, n - 1}]; a[1] = 1; Table[a[n], {n, 1, 21}]
CROSSREFS
Cf. A001063.
Sequence in context: A140545 A062640 A108646 * A058193 A065314 A065316
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 18 08:14 EDT 2024. Contains 371769 sequences. (Running on oeis4.)