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!)
A317363 Expansion of e.g.f. 1/(2 - exp(x/(1 + x))). 0

%I #7 Jul 26 2018 16:29:56

%S 1,1,1,1,3,1,33,-83,955,-5243,44913,-285647,1672179,3544009,

%T -352029311,9470312053,-208005703605,4326748972141,-88602638362863,

%U 1819530461684473,-37722654765171965,791428823931046321,-16784285106705759519,358449656565896328061,-7653024671576463436197

%N Expansion of e.g.f. 1/(2 - exp(x/(1 + x))).

%C Inverse Lah transform of the Fubini numbers (A000670).

%H N. J. A. Sloane, <a href="/transforms.txt">Transforms</a>

%F a(n) = Sum_{k=0..n} (-1)^(n-k)*binomial(n-1,k-1)*A000670(k)*n!/k!.

%p b:= proc(n) option remember; `if`(n=0, 1,

%p add(b(n-j)*binomial(n, j), j=1..n))

%p end:

%p a:= proc(n) option remember; add((-1)^(n-k)*

%p n!/k!*binomial(n-1, k-1)*b(k), k=0..n)

%p end:

%p seq(a(n), n=0..30); # _Alois P. Heinz_, Jul 26 2018

%t nmax = 24; CoefficientList[Series[1/(2 - Exp[x/(1 + x)]), {x, 0, nmax}], x] Range[0, nmax]!

%t Table[Sum[(-1)^(n - k) Binomial[n - 1, k - 1] HurwitzLerchPhi[1/2, -k, 0] n!/(2 k!), {k, 0, n}], {n, 0, 24}]

%Y Cf. A000670, A084358.

%K sign

%O 0,5

%A _Ilya Gutkovskiy_, Jul 26 2018

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 July 22 18:23 EDT 2024. Contains 374540 sequences. (Running on oeis4.)