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 A177694 #5 Mar 30 2012 17:34:41 %S A177694 1,1,1,1,-1,1,1,-2,-2,1,1,5,10,5,1,1,1,-5,-5,1,1,1,-16,16,-40,16,-16, %T A177694 1,1,13,208,-104,-104,208,13,1,1,35,-455,-3640,-728,-3640,-455,35,1,1, %U A177694 -74,2590,-16835,53872,53872,-16835,2590,-74,1,1,-31,-2294,40145,104377 %N A177694 Triangle t(n,m) = p(n)/ (p(m)*p(n-m) ) read by rows, where p(n>=1) = 1, -1, 2, 10, 10, -160, -2080,.. are partial products of A106852. %C A177694 Row sums are: 1, 2, 1, -2, 22, -6, -38, 236, -8846, 79108, -1385636,... %D A177694 Advanced Number Theory, Harvey Cohn, Dover Books,1963, Page 47ff %F A177694 p(n+1) = product_{i=0..n} (-1)^i*A106852(i). %F A177694 t(n,m) = p(n)/(p(m)*p(n-m)). %e A177694 1; %e A177694 1, 1; %e A177694 1, -1, 1; %e A177694 1, -2, -2, 1; %e A177694 1, 5, 10, 5, 1; %e A177694 1, 1, -5, -5, 1, 1; %e A177694 1, -16, 16, -40, 16, -16, 1; %e A177694 1, 13, 208, -104, -104, 208, 13, 1; %e A177694 1, 35, -455, -3640, -728, -3640, -455, 35, 1; %e A177694 1, -74, 2590, -16835, 53872, 53872, -16835, 2590, -74, 1; %e A177694 1, -31, -2294, 40145, 104377, -1670032, 104377, 40145, -2294, -31, 1; %t A177694 Clear[t, n, m, c, q, w, f, a]; %t A177694 f[0, a_] := 0; f[1, a_] := 1; %t A177694 f[n_, a_] := f[n, a] = -f[n - 1, a] - a*f[n - 2, a]; %t A177694 c[n_, a_] := If[n == 0, 1, Product[f[i, a], {i, 1, n}]]; %t A177694 w[n_, m_, q_] := c[n, q]/(c[m, q]*c[n - m, q]); %t A177694 Table[Flatten[Table[Table[w[n, m, q], {m, 0, n}], {n, 0, 10}]], {q, 2, 12}] %K A177694 sign,tabl %O A177694 0,8 %A A177694 _Roger L. Bagula_, May 11 2010