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.

A121416 Matrix square of triangle A121412.

Original entry on oeis.org

1, 2, 1, 7, 2, 1, 43, 9, 2, 1, 403, 69, 11, 2, 1, 5188, 769, 101, 13, 2, 1, 85569, 11346, 1305, 139, 15, 2, 1, 1725291, 208914, 21745, 2043, 183, 17, 2, 1, 41145705, 4613976, 443329, 37971, 3015, 233, 19, 2, 1, 1133047596, 118840164, 10679494, 850260
Offset: 0

Views

Author

Paul D. Hanna, Aug 22 2006

Keywords

Comments

Row n of triangle T=A121412 equals row (n-1) of T^(n+1) with an appended '1'.

Examples

			Triangle begins:
1;
2, 1;
7, 2, 1;
43, 9, 2, 1;
403, 69, 11, 2, 1;
5188, 769, 101, 13, 2, 1;
85569, 11346, 1305, 139, 15, 2, 1;
1725291, 208914, 21745, 2043, 183, 17, 2, 1;
41145705, 4613976, 443329, 37971, 3015, 233, 19, 2, 1;
1133047596, 118840164, 10679494, 850260, 61860, 4253, 289, 21, 2, 1;
		

Crossrefs

Programs

  • PARI
    {T(n, k)=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)[i-1, j]); )); A=B); return((A^2)[n+1, k+1])}