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 A132692 #5 Mar 30 2012 18:37:04 %S A132692 1,1,-2,12,-118,1605,-27816,585046,-14459138,410368743,-13146830110, %T A132692 469123986529,-18447791712945,792514583941223,-36925394368325295, %U A132692 1854525584914459755,-99872579714406393286,5740977285851988017769,-350847888975706702249890 %N A132692 Column 1 of triangle A132690. %C A132692 Appears to be essentially a signed version of A121425. - _N. J. A. Sloane_, Oct 30 2008 %C A132692 Triangle T=A132690 is generated from negative powers of itself such that row n+1 of T = row n of T^(-n) with appended '1' for n>=0 with T(0,0)=1. %o A132692 (PARI) {a(n)=local(A=Mat(1), B); for(m=1, n+2, B=matrix(m, m); for(i=1, m, for(j=1, i, if(j==i, B[i, j]=1, B[i, j]=(A^(-(i-2)))[i-1, j]); )); A=B); return( ((A)[n+2,2]))} %Y A132692 Cf. A132690; A132691, A132693, A132694, A121425. %K A132692 sign %O A132692 0,3 %A A132692 _Paul D. Hanna_, Aug 25 2007