OFFSET
0,2
COMMENTS
Even-indexed members of seventh column of Pascal's triangle A007318.
Number of standard tableaux of shape (2n+1,1^6). - Emeric Deutsch, May 30 2004
LINKS
Nathaniel Johnston, Table of n, a(n) for n = 0..1000
Milan Janjić, Enumerative Formulas for Some Functions on Finite Sets.
Milan Janjić, Two Enumerative Functions.
Index entries for linear recurrences with constant coefficients, signature (7,-21,35,-35,21,-7,1).
FORMULA
G.f.: (1 + 21*x + 35*x^2 + 7*x^3)/(1-x)^7.
a(n) = binomial(2*n+6, 6) = A000579(2*n+6).
E.g.f.: (90 + 2430*x + 6975*x^2 + 5655*x^3 + 1710*x^4 + 204*x^5 + 8*x^6)* exp(x)/90. - G. C. Greubel, Sep 03 2018
From Amiram Eldar, Oct 21 2022: (Start)
Sum_{n>=0} 1/a(n) = 96*log(2) - 131/2.
Sum_{n>=0} (-1)^n/a(n) = 23/2 - 6*Pi + 12*log(2). (End)
MAPLE
seq(binomial(2*n+6, 6), n=0..40); # Nathaniel Johnston, May 14 2011
MATHEMATICA
Table[Binomial[2*n+6, 6], {n, 0, 30}] (* G. C. Greubel, Sep 03 2018 *)
PROG
(PARI) vector(30, n, n--; binomial(2*n+6, 6)) \\ G. C. Greubel, Sep 03 2018
(Magma) [Binomial(2*n+6, 6): n in [0..30]]; // G. C. Greubel, Sep 03 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved