|
|
A001450
|
|
a(n) = binomial(5*n,2*n).
|
|
9
|
|
|
1, 10, 210, 5005, 125970, 3268760, 86493225, 2319959400, 62852101650, 1715884494940, 47129212243960, 1300853625660225, 36052387482172425, 1002596421878664480, 27963143931814663880, 781879430625942976880, 21910242651571684460050, 615167304833936727234180
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
0,2
|
|
LINKS
|
|
|
FORMULA
|
a(n) = (5*n)!/((3*n)!*(2*n)!).
a(n) = 2F1[-3n,-2n,1,1] (see Mathematica code below). - John M. Campbell, Jul 15 2011
G.f.: hypergeom([1/5, 2/5, 3/5, 4/5], [1/3, 1/2, 2/3], (3125/108)*x). - Robert Israel, Aug 07 2014
a(n) = [x^n] ( (1 + x)*C(x) )^(5*n), where C(x) = (1 - sqrt(1 - 4*x))/(2*x) is the o.g.f. for the Catalan numbers A000108.
exp( (1/5) * Sum_{n >= 1} a(n)*x^n/n ) = 1 + 2*x + 23*x^2 + 377*x^3 + ... is the o.g.f. for the sequence of Duchon numbers A060941. (End)
D-finite with recurrence 6*n*(3*n-1)*(2*n-1)*(3*n-2)*a(n) -5*(5*n-4)*(5*n-3)*(5*n-2)*(5*n-1)*a(n-1)=0. - R. J. Mathar, Feb 08 2021
Right-hand side of the identity Sum_{k = 0..2*n} (-1)^k*binomial(-n, k)* binomial(4*n-k, 2*n-k) = binomial(5*n, 2*n). Compare with the identity Sum_{k = 0..n} (-1)^k*binomial(n, k)*binomial(4*n-k, 2*n-k) = binomial(3*n, n). - Peter Bala, Jun 05 2024
|
|
MAPLE
|
f := n->(5*n)!/((3*n)!*(2*n)!);
|
|
MATHEMATICA
|
Table[Hypergeometric2F1[-3n, -2n, 1, 1], {n, 0, 60}] (* John M. Campbell, Jul 15 2011 *)
|
|
PROG
|
(PARI) a(n) = binomial(5*n, 2*n) \\ Altug Alkan, Oct 06 2015
|
|
CROSSREFS
|
|
|
KEYWORD
|
nonn,easy
|
|
AUTHOR
|
|
|
STATUS
|
approved
|
|
|
|