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.

A156710 Triangle read by rows, A123191 * (A002605 * (A002605 * 0^(n-k))).

Original entry on oeis.org

1, 1, 1, 1, 3, 1, 1, 3, 6, 6, 1, 3, 6, 18, 16, 1, 3, 6, 18, 48, 44, 1, 3, 6, 18, 48, 132, 120, 136, 18, 48, 132, 360, 328, 1, 3, 6, 18, 48, 132, 360, 984, 896, 1, 3, 6, 18, 48, 132, 360, 984, 2688, 2448, 1, 3, 6, 18, 48, 132, 360, 984, 2688, 7344, 6688
Offset: 0

Views

Author

Gary W. Adamson, Feb 14 2009

Keywords

Comments

Row sums = A002605: (1, 2, 6, 16, 44, 120,...)
As a property of eigentriangles, sum of row terms = rightmost term of next row.

Examples

			First few rows of the triangle =
1;
1, 1;
1, 3, 2;
1, 3, 6, 6;
1, 3, 6, 18, 16;
1, 3, 6, 18, 48, 44;
1, 3, 6, 18, 48, 132, 120;
1, 3, 6, 18, 48, 132, 360, 328;
1, 3, 6, 18, 48, 132, 360, 984, 896;
1, 3, 6, 18, 48, 132, 360, 984, 2688, 2448;
1, 3, 6, 18, 48, 132, 360, 984, 2688, 7344, 6688;
...
		

Crossrefs

Formula

Triangle read by rows, A123191 * (A002605 * (A002605 * 0^(n-k))). A123191 is
unsigned, (A002605 * 0^(n-k))= an infinite lower triangular matrix with
A002605 as the main diagonal prefaced with a 1: (1, 1, 2, 6, 16, 44,...)
and the rest zeros.