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.
%I A177810 #17 Mar 12 2014 16:37:17 %S A177810 1,1,1,1,924,1,1,18564,18564,1,1,134596,2704156,134596,1,1,593775, %T A177810 86493225,86493225,593775,1,1,1947792,1251677700,9075135300, %U A177810 1251677700,1947792,1,1,5245786,11058116888,353697121050,353697121050,11058116888,5245786,1 %N A177810 Triangle binomial(6*n,6*m), 0 <= m <= n, read by rows. %C A177810 Row sums are A070967. k=6 in binomial(k*n,k*m) sequence similar to k=2 in A086645, k=4 in A070775,... %F A177810 Left-right symmetric: binomial(6*n,6*m) = binomial(6*n,6*(n-m)). %e A177810 1; %e A177810 1, 1; %e A177810 1, 924, 1; %e A177810 1, 18564, 18564, 1; %e A177810 1, 134596, 2704156, 134596, 1; %e A177810 1, 593775, 86493225, 86493225, 593775, 1; %t A177810 t[n_, m_] := Binomial[n, 6*m]; Flatten@Table[Table[t[n, m], {m, 0, n/6}], {n, 0, 42, 6}] %Y A177810 Cf. A034839, A177808, A139459, A070782, A177809, A070967. %K A177810 nonn,tabl %O A177810 0,5 %A A177810 _Roger L. Bagula_, Dec 13 2010