cp's OEIS Frontend

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.

A132691 Column 0 of triangle A132690.

Original entry on oeis.org

1, 1, -1, 5, -43, 527, -8396, 164672, -3835910, 103464895, -3170985454, 108828369497, -4134333957073, 172223139437835, -7805591781504739, 382374360671653989, -20132511625986242785, 1133765691312312723347, -68002260363248096548050
Offset: 0

Views

Author

Paul D. Hanna, Aug 25 2007

Keywords

Crossrefs

Programs

  • PARI
    {a(n)=local(A=Mat(1), B); for(m=1, n+1, 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+1,1]))}