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.

A113093 Main diagonal of square table A113092; also, a(n) equals the n-th term in column 0 of the matrix n-th power of triangle A113095.

Original entry on oeis.org

1, 1, 13, 693, 146821, 124626530, 426524622399, 5893207147435867, 328422072384464274577, 73719657441008064407836359, 66567306698774377126527799872190
Offset: 0

Views

Author

Paul D. Hanna, Oct 14 2005

Keywords

Crossrefs

Programs

  • PARI
    {a(n,q=4)=local(M=matrix(n+1,n+1));for(r=1,n+1, for(c=1,r, M[r,c]=if(r==c,1,if(c>1,(M^q)[r-1,c-1])+(M^q)[r-1,c]))); return((M^n)[n+1,1])}