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
1, 4, 76, 2544, 123696, 7942080, 635633280, 61009159680, 6831940227840, 874493448514560, 125946241018214400, 20156433977646489600, 3548609812373223628800, 681555522002874494976000, 141810253720479017017344000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = sum(L(k)L(n-k),k=0..n), where L(n) is a central Lah number.
a(n) ~ n! * 16^n / (Pi*n). - Vaclav Kotesovec, Oct 06 2019
MAPLE
a := n -> if n=0 then 1 else binomial(2*n-1, n-1)*(2*n)!/n! fi;
seq(sum(a(k)*a(n-k), k=0..n), n=0..12);
MATHEMATICA
a[n_] := If[n == 0, 1, Binomial[2n - 1, n - 1](2n)!/n!]
Table[Sum[a[k]a[n - k], {k, 0, n}], {n, 0, 20}]
PROG
(Maxima) a(n) := if n=0 then 1 else binomial(2*n-1, n-1)*(2*n)!/n!;
makelist(sum(a(k)*a(n-k), k, 0, n), n, 0, 12);
CROSSREFS
Sequence in context: A144210 A220793 A220958 * A364111 A009631 A012020
KEYWORD
nonn,easy
AUTHOR
Emanuele Munarini, Mar 11 2011
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 April 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)