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.

A135871 Triangle by columns: A013610 signed and interleaved with zeros.

Original entry on oeis.org

1, 0, 3, -1, 0, 9, 0, -6, 0, 27, 1, 0, -27, 0, 81, 0, 9, 0, -108, 0, 243, -1, 0, 54, 0, -405, 0, 729, 0, -12, 0, 270, 0, -1458, 0, 2187
Offset: 1

Views

Author

Gary W. Adamson, Dec 02 2007

Keywords

Comments

Row sums = even-indexed Fibonacci numbers, A001906: (1, 3, 8, 21, 55, ...) such that the sum of n-th row terms = F(2n). Example: sum of nonzero terms of row 4 = (-6 + 27) = 21 = F(8).

Examples

			First few rows of the triangle:
   1;
   0,  3;
  -1,  0,   9;
   0, -6,   0,   27;
   1,  0, -27,    0,   81;
   0,  9,   0, -108,    0, 243;
  -1,  0,  54,    0, -405,   0, 729;
  ...
		

Crossrefs

Formula

The triangle starts with A013610, then by columns sign (+, -, +, ...) and interleave with zeros.