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.

A104571 Triangle T(n,k) = A042948(n-k+1) read by rows, 0<=k<=n.

Original entry on oeis.org

1, 4, 1, 5, 4, 1, 8, 5, 4, 1, 9, 8, 5, 4, 1, 12, 9, 8, 5, 4, 1, 13, 12, 9, 8, 5, 4, 1, 16, 13, 12, 9, 8, 5, 4, 1
Offset: 0

Views

Author

Gary W. Adamson, Mar 16 2005

Keywords

Examples

			The first few rows are:
1;
4, 1;
5, 4, 1;
8, 5, 4, 1;
9, 8, 5, 4, 1;
...
		

Crossrefs

Cf. A042948, A035608 (row sums), A104570, A104569, A074377.

Formula

The triangle is extracted from the product of lower triangular matrices (with the rest of the terms all zeros): G * R (or R * G); G = [1; 3, 1; 1, 3, 1; 3, 1, 3, 1;...]; R = [1; 1, 1; 1, 1, 1;...].