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.

A130888 Triangle read by rows, A051731(n,k) dot (1, 3, 7, 15, ...) with like numbers of terms.

Original entry on oeis.org

1, 1, 3, 1, 0, 7, 1, 3, 0, 15, 1, 0, 0, 0, 31, 1, 3, 7, 0, 0, 63, 1, 0, 0, 0, 0, 0, 127, 1, 3, 0, 15, 0, 0, 0, 255
Offset: 1

Views

Author

Gary W. Adamson, Jun 07 2007

Keywords

Comments

Row sums = A130887: (1, 4, 8, 19, 32, 74, 128, 274, 519, 1058, ...).

Examples

			First few rows of the triangle:
  1;
  1,  3;
  1,  0,  7;
  1,  3,  0, 15;
  1,  0,  0,  0, 31;
  1,  3,  7,  0,  0, 63;
  ...
Row 4 = (1, 3, 0, 15) = (1, 1, 0, 1) dot (1, 3, 7, 15); where (1, 1, 0, 1) = row 4 of A051731.
		

Crossrefs

Formula

Triangle read by rows, dot product of each row of A051731 and the same number of terms in the series (1, 3, 7, 15, ...).
G.f.: Sum_{k>0} (2^k-1)*(x*y)^k/(1-x^k). - Vladeta Jovovic, Dec 02 2008