A056616 Numerator of binomial(2n,n)/(2n+1).
1, 2, 6, 20, 70, 252, 924, 1144, 12870, 48620, 184756, 705432, 2704156, 10400600, 40116600, 155117520, 200360130, 466721244, 9075135300, 11781754600, 137846528820, 538257874440, 140273264248, 8233430727600, 32247603683100
Offset: 0
Examples
The rationals r(n) begin: 1, 2/3, 6/5, 20/7, 70/9, 252/11, 924/13, 1144/5, 12870/17, ...
Links
- Robert Israel, Table of n, a(n) for n = 0..1663
Programs
-
Maple
seq(numer(binomial(2*n,n)/(2*n+1)), n=0..50); # Robert Israel, Feb 21 2017
-
Mathematica
Numerator[Table[Binomial[2n,n]/(2n+1),{n,0,30}]] (* Harvey P. Dale, Jul 25 2013 *)
-
PARI
a(n) = numerator(binomial(2*n, n)/(2*n+1)) \\ Felix Fröhlich, Feb 21 2017
Formula
Numerators of the rationals r(n) = binomial(2n,n)/(2n+1) with G.f.: 1/(2*sqrt(x))*arcsin(2*sqrt(x)). [Vladimir Kruchinin, May 31 2013]
Comments