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!)
A305406 Expansion of Sum_{k>=0} binomial(2*k,k)*x^k/Product_{j=1..k} (1 - j*x). 3

%I #7 Aug 04 2021 10:03:51

%S 1,2,8,40,234,1544,11242,89016,758504,6900012,66590782,678322704,

%T 7262393832,81431657220,953339019606,11622207372104,147199295291518,

%U 1932876310310488,26265519359529974,368752956750812256,5340795881536757632,79691179458925839676,1223524383429928039306

%N Expansion of Sum_{k>=0} binomial(2*k,k)*x^k/Product_{j=1..k} (1 - j*x).

%C Stirling transform of A000984.

%H Alois P. Heinz, <a href="/A305406/b305406.txt">Table of n, a(n) for n = 0..539</a>

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

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/StirlingTransform.html">Stirling Transform</a>

%F E.g.f.: exp(2*(exp(x) - 1))*BesselI(0,2*(exp(x) - 1)).

%F a(n) = Sum_{k=0..n} Stirling2(n,k)*binomial(2*k,k).

%p b:= proc(n, m) option remember;

%p `if`(n=0, binomial(2*m, m), m*b(n-1, m)+b(n-1, m+1))

%p end:

%p a:= n-> b(n, 0):

%p seq(a(n), n=0..23); # _Alois P. Heinz_, Aug 04 2021

%t nmax = 22; CoefficientList[Series[Sum[Binomial[2 k, k] x^k/Product[1 - j x, {j, 1, k}], {k, 0, nmax}], {x, 0, nmax}], x]

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

%t Table[Sum[StirlingS2[n, k] Binomial[2 k, k], {k, 0, n}], {n, 0, 22}]

%Y Cf. A000984, A064856.

%K nonn

%O 0,2

%A _Ilya Gutkovskiy_, May 31 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 April 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)