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 A122947 #6 Jun 03 2023 06:32:13 %S A122947 1,1,-1,-1,-1,1,1,3,1,-1,1,-1,-4,-1,1,-1,-1,6,8,1,-1,-1,3,6,-7,-10,-1, %T A122947 1,-1,7,-6,-14,8,12,1,-1,1,1,-13,8,20,-8,-13,-1,1,-1,-3,11,17,-36,-26, %U A122947 27,21,1,-1,-1,1,19,-26,-53,63,53,-32,-25,-1,1,-1,5,15,-89,54,144,-102,-92,37,29,1,-1,1,3,-27,-10,169,-89,-226,127,121 %N A122947 Triangular sequence: 1, 1 - x, -1 - x + x^2, 1 + 3 x + x^2 - x^3, 1 - x - 4 x^2 - x^3 +x^4, -1 - x + 6 x^2 + 8 x^3 + x^4 - x^5, -1 + 3 x + 6 x^2 - 7 x^3 - 10 x^4 - x^5 + x^6. %C A122947 Matrices: 1 %C A122947 X 1 {{1}} %C A122947 2 X 2 {{1, 1}, {1, 0}} %C A122947 3 X 3 {{1, 1, 1}, {1, 0, 1}, {1, 1, 0}} %C A122947 4 X 4 {{1, 1, 1, 1}, {1, 0, 1, 0}, {1, 1, 0, 0}, {1, 0, 0, 0}} %C A122947 5 X 5 {{1, 1, 1, 1, 1}, {1, 0, 1, 0, 1}, {1, 1, 0, 0, 1}, {1, 0, 0, 0, 1}, {1, 1, 1, 1, 0}} %C A122947 6 X 6 {{1, 1, 1, 1, 1, 1}, {1, 0, 1, 0, 1, 0}, {1, 1, 0, 0, 1, 1}, {1, 0, 0, 0, 1, 0}, {1, 1, 1, 1, 0, 0}, {1, 0, 1, 0, 0, 0}} %e A122947 Triangle sequence: %e A122947 {1}, %e A122947 {1, -1}, %e A122947 {-1, -1, 1}, %e A122947 {1, 3, 1, -1}, %e A122947 {1, -1, -4, -1, 1}, %e A122947 {-1, -1, 6, 8, 1, -1}, %e A122947 {-1, 3, 6, -7, -10, -1, 1}, %e A122947 {-1, 7, -6, -14, 8, 12, 1, -1} %t A122947 c[i_, k_] := Floor[Mod[i/2^k, 2]]; %t A122947 An[d_] := Table[If[Sum[c[n, k]*c[m, k], {k, 0, d - 1}] == 0, 1, 0], {n, 0, d - 1}, {m, 0, d - 1}]; Join[{{1}}, %t A122947 Table[CoefficientList[CharacteristicPolynomial[An[d], x], x], {d,1, 20}]]; %t A122947 Flatten[%] %K A122947 tabl,uned,less,sign %O A122947 1,8 %A A122947 _Roger L. Bagula_ and _Gary W. Adamson_, Oct 24 2006