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!)
A305560 Expansion of Sum_{k>=0} binomial(k,floor(k/2))*x^k/Product_{j=1..k} (1 - j*x). 2
1, 1, 3, 10, 39, 176, 893, 4985, 30229, 197452, 1379655, 10250087, 80558195, 666916238, 5795111845, 52691973136, 499969246647, 4938724595994, 50679201983653, 539209298355565, 5938139329609621, 67582179415195986, 793755139140445707, 9608367683839952732, 119730171975510540577 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Stirling transform of A001405.
LINKS
N. J. A. Sloane, Transforms
Eric Weisstein's World of Mathematics, Stirling Transform
FORMULA
E.g.f.: BesselI(0,2*(exp(x) - 1)) + BesselI(1,2*(exp(x) - 1)).
a(n) = Sum_{k=0..n} Stirling2(n,k)*binomial(k,floor(k/2)).
MAPLE
a:= n-> add(binomial(j, floor(j/2))*Stirling2(n, j), j=0..n):
seq(a(n), n=0..30); # Alois P. Heinz, Jun 21 2018
MATHEMATICA
nmax = 24; CoefficientList[Series[Sum[Binomial[k, Floor[k/2]] x^k/Product[1 - j x, {j, 1, k}], {k, 0, nmax}], {x, 0, nmax}], x]
nmax = 24; CoefficientList[Series[BesselI[0, 2 (Exp[x] - 1)] + BesselI[1, 2 (Exp[x] - 1)], {x, 0, nmax}], x] Range[0, nmax]!
Table[Sum[StirlingS2[n, k] Binomial[k, Floor[k/2]], {k, 0, n}], {n, 0, 24}]
CROSSREFS
Sequence in context: A352174 A124532 A343795 * A074728 A087860 A307593
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 21 2018
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 May 6 13:11 EDT 2024. Contains 372293 sequences. (Running on oeis4.)