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

A010934
Binomial coefficient C(18,n).
0
1, 18, 153, 816, 3060, 8568, 18564, 31824, 43758, 48620, 43758, 31824, 18564, 8568, 3060, 816, 153, 18, 1
OFFSET
0,2
COMMENTS
Row 18 of A007318.
MAPLE
seq(binomial(18, n), n=0..18); # Nathaniel Johnston, Jun 23 2011
MATHEMATICA
q = 18; Join[{a = 1}, Table[a = (q - n)*a/(n + 1), {n, 0, q - 1}]] (* Vladimir Joseph Stephan Orlovsky, Jul 09 2011 *)
PROG
(Sage) [binomial(18, m) for m in range(19)] # Zerinvary Lajos, Apr 21 2009
(Magma) [Binomial(18, n): n in [0..18]]; // Vincenzo Librandi, Jun 12 2013
CROSSREFS
Sequence in context: A235397 A252971 A047643 * A022613 A060221 A244876
KEYWORD
nonn,fini,full,easy
STATUS
approved