login
A010932
Binomial coefficient C(16,n).
0
1, 16, 120, 560, 1820, 4368, 8008, 11440, 12870, 11440, 8008, 4368, 1820, 560, 120, 16, 1
OFFSET
0,2
COMMENTS
Row 16 of A007318.
MAPLE
seq(binomial(16, n), n=0..16); # Nathaniel Johnston, Jun 23 2011
MATHEMATICA
q = 16; Join[{a = 1}, Table[a = (q - n)*a/(n + 1), {n, 0, q - 1}]] (* Vladimir Joseph Stephan Orlovsky, Jul 09 2011 *)
Binomial[16, Range[0, 16]] (* Harvey P. Dale, Oct 18 2020 *)
PROG
(SageMath) [binomial(16, m) for m in range(17)] # Zerinvary Lajos, Apr 21 2009
(Magma) [Binomial(16, n): n in [0..16]]; // Vincenzo Librandi, Jun 12 2013
(PARI) a(n)=binomial(16, n) \\ Charles R Greathouse IV, Jul 19 2016
CROSSREFS
KEYWORD
nonn,fini,full,easy
STATUS
approved