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.

A167948 Triangle read by rows, A101688 * (an infinite lower triangular matrix with A002083 as the main diagonal and the rest zeros).

Original entry on oeis.org

1, 0, 1, 0, 1, 1, 0, 0, 1, 2, 0, 0, 1, 2, 3, 0, 0, 0, 2, 3, 6, 0, 0, 0, 2, 3, 6, 11, 0, 0, 0, 0, 3, 6, 11, 22, 0, 0, 0, 0, 3, 6, 11, 22, 42, 0, 0, 0, 0, 0, 6, 11, 22, 42, 84, 0, 0, 0, 0, 0, 6, 11, 22, 42, 84, 165, 0, 0, 0, 0, 0, 0, 11, 22, 42, 84, 165, 330
Offset: 1

Views

Author

Gary W. Adamson, Nov 15 2009

Keywords

Comments

Row sums = A002083(n+1): (1, 1, 2, 3, 6, 11, 22, 42, 84, 165,...).
Sum of n-th row terms = rightmost term of next row.
Eigensequence of triangle A101688 = A002083 starting with offset 1: (1, 1, 2, 3, 6, 11, 22, 42,...).

Examples

			First few rows of the triangle:
  1;
  0, 1;
  0, 1, 1;
  0, 0, 1, 2;
  0, 0, 1, 2, 3;
  0, 0, 0, 2, 3, 6;
  0, 0, 0, 2, 3, 6, 11;
  0, 0, 0, 0, 3, 6, 11, 22;
  0, 0, 0, 0, 3, 6, 11, 22, 42;
  0, 0, 0, 0, 0, 6, 11, 22, 42, 84;
  0, 0, 0, 0, 0, 6, 11, 22, 42, 84, 165;
  0, 0, 0, 0, 0, 0, 11, 22, 42, 84, 165, 330;
  0, 0, 0, 0, 0, 0, 11, 22, 42, 84, 165, 330, 654;
  0, 0, 0, 0, 0, 0, .0, 22, 42, 84, 165, 330, 654, 1308;
  0, 0, 0, 0, 0, 0, .0, 22, 42, 84, 165, 330, 654, 1308, 2605;
  ...
		

Crossrefs

Formula

Equals M * Q, where M = triangle A101688, Q = an infinite lower triangular matrix with (1, 1, 1, 2, 3, 6, 11, 22, 42,...) as the main diagonal and the rest zeros.