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!)
A187542 Convolutions of the central Lah numbers (A187535). 11

%I #11 Oct 06 2019 07:27:30

%S 1,4,76,2544,123696,7942080,635633280,61009159680,6831940227840,

%T 874493448514560,125946241018214400,20156433977646489600,

%U 3548609812373223628800,681555522002874494976000,141810253720479017017344000

%N Convolutions of the central Lah numbers (A187535).

%H Vaclav Kotesovec, <a href="/A187542/b187542.txt">Table of n, a(n) for n = 0..300</a>

%F a(n) = sum(L(k)L(n-k),k=0..n), where L(n) is a central Lah number.

%F a(n) ~ n! * 16^n / (Pi*n). - _Vaclav Kotesovec_, Oct 06 2019

%p a := n -> if n=0 then 1 else binomial(2*n-1,n-1)*(2*n)!/n! fi;

%p seq(sum(a(k)*a(n-k), k=0..n),n=0..12);

%t a[n_] := If[n == 0, 1, Binomial[2n - 1, n - 1](2n)!/n!]

%t Table[Sum[a[k]a[n - k], {k, 0, n}], {n, 0, 20}]

%o (Maxima) a(n) := if n=0 then 1 else binomial(2*n-1,n-1)*(2*n)!/n!;

%o makelist(sum(a(k)*a(n-k),k,0,n),n,0,12);

%Y Cf. A187536, A008297, A111596, A187536, A187538, A187539, A187540, A187543, A187544, A187545, A187546, A187547, A187548.

%K nonn,easy

%O 0,2

%A _Emanuele Munarini_, Mar 11 2011

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 August 16 08:37 EDT 2024. Contains 375173 sequences. (Running on oeis4.)