login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A010945
Binomial coefficient C(29,n).
0
1, 29, 406, 3654, 23751, 118755, 475020, 1560780, 4292145, 10015005, 20030010, 34597290, 51895935, 67863915, 77558760, 77558760, 67863915, 51895935, 34597290, 20030010, 10015005, 4292145, 1560780, 475020, 118755, 23751, 3654, 406, 29, 1
OFFSET
0,2
COMMENTS
Row 29 of A007318.
MAPLE
seq(binomial(29, n), n=0..29); # Nathaniel Johnston, Jun 24 2011
MATHEMATICA
q = 29; Join[{a = 1}, Table[a = (q - n)*a/(n + 1), {n, 0, q - 1}]] (* Vladimir Joseph Stephan Orlovsky, Jul 10 2011 *)
Binomial[29, Range[0, 29]] (* Harvey P. Dale, Feb 04 2019 *)
PROG
(Sage) [binomial(29, n) for n in range(30)] # Zerinvary Lajos, May 21 2009
(Magma) [Binomial(29, n): n in [0..29]]; // Vincenzo Librandi, Jun 12 2013
CROSSREFS
KEYWORD
nonn,fini,full,easy
AUTHOR
STATUS
approved