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

A010939
Binomial coefficient C(23,n).
0
1, 23, 253, 1771, 8855, 33649, 100947, 245157, 490314, 817190, 1144066, 1352078, 1352078, 1144066, 817190, 490314, 245157, 100947, 33649, 8855, 1771, 253, 23, 1
OFFSET
0,2
COMMENTS
Row 23 of A007318.
MAPLE
seq(binomial(23, n), n=0..23); # Nathaniel Johnston, Jun 24 2011
MATHEMATICA
q = 23; Join[{a = 1}, Table[a = (q - n)*a/(n + 1), {n, 0, q - 1}]] (* Vladimir Joseph Stephan Orlovsky, Jul 10 2011 *)
Binomial[23, Range[0, 23]] (* Harvey P. Dale, Oct 09 2013 *)
PROG
(Sage) [binomial(23, m) for m in range(24)] # Zerinvary Lajos, Apr 21 2009
(Magma) [Binomial(23, n): n in [0..23]]; // Vincenzo Librandi, Jun 12 2013
CROSSREFS
KEYWORD
nonn,fini,full,easy
STATUS
approved