A268085 a(n) = Catalan(n)^2*n.
0, 1, 8, 75, 784, 8820, 104544, 1288287, 16359200, 212751396, 2821056160, 38013731756, 519227905728, 7174705330000, 100136810390400, 1409850293610375, 20002637245262400, 285732116760449700, 4106497099278420000, 59341164471850545900, 861753537765219528000
Offset: 0
Examples
For n=3 the a(3)= 75.
Links
- Ralf Steiner, Beispiele zur modifizierten Wallis-Lambert-Reihe (in German).
Programs
-
Magma
[Catalan(n)^2*n: n in [0..20]]; // Vincenzo Librandi, Jan 26 2016
-
Mathematica
Table[CatalanNumber[n]^2 n, {n, 0, 20}]
-
PARI
a(n) = n*(binomial(2*n, n)/(n+1))^2; \\ Altug Alkan, Jan 26 2016
Extensions
Corrected and extended by Vincenzo Librandi, Jan 26 2016
Comments