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”).

A010926
Binomial coefficients C(10,n).
91
1, 10, 45, 120, 210, 252, 210, 120, 45, 10, 1
OFFSET
0,2
COMMENTS
Row 10 of A007318.
MAPLE
seq(binomial(10, n), n=0..10); # Nathaniel Johnston, Jun 23 2011
MATHEMATICA
q = 10; Join[{a = 1}, Table[a = (q - n)*a/(n + 1), {n, 0, q - 1}]] (* Vladimir Joseph Stephan Orlovsky, Jul 09 2011 *)
PROG
(Sage) [binomial(10, m) for m in range(11)] # Zerinvary Lajos, Apr 21 2009
(PARI) a(n)=binomial(10, n) \\ Charles R Greathouse IV, Jan 08 2013
(Magma) [Binomial(10, n): n in [0..10]]; // Vincenzo Librandi, Jun 12 2013
CROSSREFS
KEYWORD
nonn,fini,full,easy
STATUS
approved