A066972 Duplicate of A067819.
3, 12, 42, 144, 728, 2688, 10080, 39312, 127008, 423360, 2419200, 6773760, 32140800
Offset: 1
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
T(6,3)=42 because the sum of the divisors of binomial(6,3)=20 is 1+2+4+5+10+20=42. Triangle begins: 1; 1, 1; 1, 3, 1; 1, 4, 4, 1; 1, 7, 12, 7, 1;
with(numtheory): T:=(n,k)->sigma(binomial(n,k)): for n from 0 to 11 do seq(T(n,k),k=0..n) od; # yields sequence in triangular form
Table[DivisorSigma[1,Binomial[n,k]],{n,0,20},{k,0,n}]//Flatten (* Harvey P. Dale, Mar 25 2016 *)
Comments