OFFSET
0,3
COMMENTS
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
FORMULA
a(n) = binomial(2*(n+1),n)*gcd(n,2)/(2*(n+1)) for n >= 0.
a(n) = A107711(2*(n+1), n) for n >= 0.
G.f.: (3*c(x)- c(-x)-2)/(4*x) =(4*(1-x) - 3*sqrt(1-4*x) - sqrt(1+4*x))/(8*x^2), with c(x) the o.g.f. of the Catalan numbers A000108. See the bisection comment above.
a(n) ~ gcd(n, 2) * 2^(2*n+1) / (n^(3/2) * sqrt(Pi)). - Amiram Eldar, Sep 25 2025
MATHEMATICA
Table[Binomial[2 (n + 1), n] GCD[n, 2]/(2 (n + 1)), {n, 0, 40}] (* Vincenzo Librandi, Feb 25 2014 *)
PROG
(Magma) [Binomial(2*(n+1), n)*Gcd(n, 2)/(2*(n+1)): n in [0..30]]; // Vincenzo Librandi, Feb 25 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Feb 23 2014
EXTENSIONS
a(26) from Vincenzo Librandi, Feb 25 2014
STATUS
approved
