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!)
A306485 Expansion of Product_{k>=1} 1/(1 - Catalan(k)*x^k), where Catalan = A000108. 1

%I #10 Aug 23 2019 16:21:38

%S 1,1,3,8,26,78,271,874,3096,10537,37884,132282,484369,1723568,6362479,

%T 23042165,85706354,313629597,1175860079,4340963778,16355209663,

%U 60882536222,230370880224,862533878347,3278709952956,12337333292318,47042968508785,177882993705004,680221802560835,2581438941995517

%N Expansion of Product_{k>=1} 1/(1 - Catalan(k)*x^k), where Catalan = A000108.

%H Vaclav Kotesovec, <a href="/A306485/b306485.txt">Table of n, a(n) for n = 0..1000</a>

%F G.f.: exp(Sum_{k>=1} Sum_{j>=1} Catalan(j)^k*x^(j*k)/k).

%F a(n) ~ c * 4^n / (sqrt(Pi)*n^(3/2)), where c = Product_{k>=1} 1/(1 - Catalan(k) / 4^k) = 2.868839868502632... - _Vaclav Kotesovec_, Feb 23 2019

%p C:= proc(n) option remember; binomial(n+n, n)/(n+1) end:

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

%p b(n, i-1)+C(i)*b(n-i, min(n-i, i)))

%p end:

%p a:= n-> b(n$2):

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

%t nmax = 29; CoefficientList[Series[Product[1/(1 - CatalanNumber[k] x^k), {k, 1, nmax}], {x, 0, nmax}], x]

%t nmax = 29; CoefficientList[Series[Exp[Sum[Sum[CatalanNumber[j]^k x^(j k)/k, {j, 1, nmax}], {k, 1, nmax}]], {x, 0, nmax}], x]

%t a[n_] := a[n] = If[n == 0, 1, Sum[Sum[d CatalanNumber[d]^(k/d), {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 29}]

%Y Cf. A000108, A088327, A179381.

%K nonn

%O 0,3

%A _Ilya Gutkovskiy_, Feb 18 2019

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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)