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

A010935
Binomial coefficient C(19,n).
0
1, 19, 171, 969, 3876, 11628, 27132, 50388, 75582, 92378, 92378, 75582, 50388, 27132, 11628, 3876, 969, 171, 19, 1
OFFSET
0,2
COMMENTS
Row 19 of A007318.
MAPLE
seq(binomial(19, n), n=0..19); # Nathaniel Johnston, Jun 24 2011
MATHEMATICA
q = 19; Join[{a = 1}, Table[a = (q - n)*a/(n + 1), {n, 0, q - 1}]] (* Vladimir Joseph Stephan Orlovsky, Jul 09 2011 *)
Binomial[19, Range[0, 19]] (* Harvey P. Dale, Jul 15 2018 *)
PROG
(Sage) [binomial(19, m) for m in range(20)] # Zerinvary Lajos, Apr 21 2009
(Magma) [Binomial(19, n): n in [0..19]]; // Vincenzo Librandi, Jun 12 2013
CROSSREFS
Sequence in context: A036155 A224935 A047644 * A282288 A022614 A322878
KEYWORD
nonn,fini,full,easy
STATUS
approved