OFFSET
0,4
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..480
Eric Weisstein's World of Mathematics, Catalan Number
FORMULA
E.g.f.: exp(2*x)*(BesselI(0, 2*x) - BesselI(1, 2*x)).
EXAMPLE
E.g.f. = 1 + x + x^2 + (5*x^3)/6 + (7*x^4)/12 + ...
MAPLE
seq(denom(binomial(2*n, n)/(n+1)!), n=0..30); # Vladeta Jovovic, Dec 03 2008
MATHEMATICA
With[{m = 30}, CoefficientList[Series[Exp[2*x]*(BesselI[0, 2*x] - BesselI[1, 2*x]), {x, 0, m}], x]]//Denominator (* G. C. Greubel, Jan 17 2019 *)
PROG
(PARI) vector(30, n, n--; denominator(binomial(2*n, n)/(n+1)!)) \\ G. C. Greubel, Jan 17 2019
(Magma) [Denominator(Binomial(2*n, n)/Factorial(n+1)): n in [0..30]]; // G. C. Greubel, Jan 17 2019
(Sage) [denominator(binomial(2*n, n)/factorial(n+1)) for n in (0..30)] # G. C. Greubel, Jan 17 2019
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
Eric W. Weisstein, Sep 13 2008
STATUS
approved