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

%I #28 Nov 16 2023 11:49:53

%S 1,1,4,25,217,2416,32839,527185,9761602,204800551,4801461049,

%T 124402647370,3529848676237,108859319101261,3625569585663484,

%U 129689000146431205,4958830249864725997,201834650901695603296,8712774828941647677019,397596632650906687905565

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

%C Stirling transform of A001147.

%H Alois P. Heinz, <a href="/A305404/b305404.txt">Table of n, a(n) for n = 0..391</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.: 1/sqrt(3 - 2*exp(x)).

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

%F a(n) ~ sqrt(2/3) * n^n / ((log(3/2))^(n + 1/2) * exp(n)). - _Vaclav Kotesovec_, Jul 01 2018

%F Conjecture: a(n) = Sum_{k>=0} k^n * binomial(2*k,k) / (2^k * 3^(k + 1/2)). - _Diego Rattaggi_, Oct 11 2020

%F O.g.f. conjectural: 1/(1 - x/(1 - 3*x/(1 - 3*x/(1 - 6*x/(1 - 5*x/(1 - 9*x/(1 - 7*x/(1 - ... - (2*n-1)*x/(1 - 3*n*x/(1 - ... )))))))))) - a continued fraction of Stieltjes-type. - _Peter Bala_, Dec 06 2020

%F a(0) = 1; a(n) = Sum_{k=1..n} (2 - k/n) * binomial(n,k) * a(n-k). - _Seiichi Manyama_, Sep 09 2023

%F a(0) = 1; a(n) = a(n-1) - 3*Sum_{k=1..n-1} (-1)^k * binomial(n-1,k) * a(n-k). - _Seiichi Manyama_, Nov 16 2023

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

%p `if`(n=0, doublefactorial(2*m-1), 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 = 19; CoefficientList[Series[Sum[(2 k - 1)!! x^k/Product[1 - j x, {j, 1, k}], {k, 0, nmax}], {x, 0, nmax}], x]

%t nmax = 19; CoefficientList[Series[1/Sqrt[3 - 2 Exp[x]], {x, 0, nmax}], x] Range[0, nmax]!

%t Table[Sum[StirlingS2[n, k] (2 k - 1)!!, {k, 0, n}], {n, 0, 19}]

%Y Cf. A000670, A001147, A004123, A305405, A346982 - A346985.

%K nonn,easy

%O 0,3

%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 March 29 00:26 EDT 2024. Contains 371264 sequences. (Running on oeis4.)