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 A045912 #30 Jan 05 2025 19:51:35 %S A045912 1,1,1,1,3,1,1,9,9,1,1,29,72,29,1,1,99,626,626,99,1,1,351,6084,13869, %T A045912 6084,351,1,1,1275,64974,347020,347020,64974,1275,1,1,4707,744193, %U A045912 9952274,21537270,9952274,744193,4707,1,1,17577,8965323,321541977,1545936516,1545936516,321541977,8965323,17577,1 %N A045912 Triangle of coefficients of characteristic polynomial of negative Pascal matrix with (i,j)-th entry -C(i+j-2,i-1). %H A045912 P. Di Francesco, P. Zinn-Justin and J.-B. Zuber, <a href="https://arxiv.org/abs/math-ph/0410002">Determinant Formulae for some Tiling Problems and Application to Fully Packed Loops</a>, arXiv:math-ph/0410002, 2004. %H A045912 W. F. Lunnon, <a href="https://web.archive.org/web/2024*/https://www.fq.math.ca/Scanned/15-3/lunnon.pdf">The Pascal matrix</a>, Fib. Quart. vol. 15 (1977) pp. 201-204. %H A045912 Luca Guido Molinari, <a href="https://arxiv.org/abs/2206.14428">Graphene nanocones and Pascal matrices</a>, arXiv:2206.14428 [math.CO], 2022. %e A045912 1; %e A045912 1,1; %e A045912 1,3,1; %e A045912 1,9,9,1; %e A045912 1,29,72,29,1; %e A045912 ... %t A045912 P[n_] := Table[Binomial[i + j - 2, i - 1], {i, 1, n}, {j, 1, n}]; %t A045912 row[0] = {1}; %t A045912 row[n_] := CoefficientList[ CharacteristicPolynomial[P[n], x], x] // Abs; %t A045912 Table[row[n], {n, 0, 9}] // Flatten (* _Jean-François Alcover_, Aug 09 2018 *) %o A045912 (PARI) T(n,k)=if(n<0,0,(-1)^(n+k)*polcoeff(charpoly(matrix(n,n,i,j,binomial(i+j-2,i-1))),k)) %o A045912 (PARI) T(n,k)=if(n<0,0,polcoeff(charpoly(-matrix(n,n,i,j,binomial(i+j-2,i-1))),k)) %Y A045912 Sum of k-th row is A006366(n). Columns give A006134, A006135, A006136. %K A045912 nonn,tabl %O A045912 0,5 %A A045912 _Fred Lunnon_, Dec 11 1999