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.

A132693 Column 2 of triangle A132690.

Original entry on oeis.org

1, 1, -3, 22, -250, 3810, -72492, 1649634, -43626510, 1313526375, -44332221175, 1657043432088, -67929461003560, 3029864359322346, -146058681728370600, 7566706624571096610, -419220650458638848514, 24733868801871384287055, -1548237182318766914543100
Offset: 0

Views

Author

Paul D. Hanna, Aug 25 2007

Keywords

Comments

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.

Crossrefs

Programs

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