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 A132815 #21 Jun 26 2022 13:03:25 %S A132815 1,-1,2,1,-2,3,-1,0,0,4,1,4,-12,8,5,-1,-10,30,-40,25,6,1,18,-45,60, %T A132815 -75,54,7,-1,-28,42,0,0,-84,98,8,1,40,0,-224,420,-336,0,160,9,-1,-54, %U A132815 -108,672,-1260,1512,-1176,288,243,10 %N A132815 A007318^(-1) * A132814. %C A132815 Row sums = A001405: (1, 1, 2, 3, 6, 10, 10, ...). %F A132815 Inverse binomial transform of A132814. %e A132815 First few rows of the triangle: %e A132815 1; %e A132815 -1, 2; %e A132815 1, -2, 3; %e A132815 -1, 0, 0, 4; %e A132815 1, 4, -12, 8, 5; %e A132815 -1, -10, 30, -240, 25, 6; %e A132815 1, 18, -45, 60, -75, 54, 7; %e A132815 ... %o A132815 (PARI) tabl(nn) = {t007318 = matrix(nn, nn, n, k, binomial(n-1, k-1)); t132813 = matrix(nn, nn, n, k, binomial(n-1, k-1)*binomial(n, k-1)); t132814 = t007318^(-1)*t132813; t132815 = t007318^(-1)*t132814; for (n=1, nn, for (k=1, n, print1(t132815[n, k], ", ");););} \\ _Michel Marcus_, Feb 12 2014 %Y A132815 Cf. A001405, A007318, A132814. %K A132815 tabl,easy,sign %O A132815 0,3 %A A132815 _Gary W. Adamson_, Sep 01 2007 %E A132815 Typo corrected by _Travis Hoppe_, Apr 24 2008 %E A132815 T(5, 1) corrected by _Michel Marcus_, Feb 12 2014