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.

A132618 Column 2 of triangle A132615.

Original entry on oeis.org

1, 1, 5, 56, 1020, 26015, 855478, 34461260, 1642995124, 90456911140, 5646312067585, 393937815588880, 30374808071994000, 2564601377235725520, 235302361169390146650, 23309583579201438877060
Offset: 0

Views

Author

Paul D. Hanna, Aug 24 2007

Keywords

Comments

Triangle T=A132615 is generated by odd matrix powers of itself such that row n+1 of T = row n of T^(2n-1) with appended '1' for n>=0 with T(0,0)=1.

Crossrefs

Cf. A132615 (triangle); other columns: A132616, A132617; A132619.

Programs

  • PARI
    {a(n)=local(A=vector(n+1), p); A[1]=1; for(j=1, n-1, p=(n+1)*n-(n-j+1)*(n-j); A=Vec((Polrev(A)+x*O(x^p))/(1-x))); A=Vec((Polrev(A)+x*O(x^p))/(1-x)); A[p+1]}