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.

A103452 Inverse of number triangle A103451.

Original entry on oeis.org

1, -1, 1, -1, 0, 1, -1, 0, 0, 1, -1, 0, 0, 0, 1, -1, 0, 0, 0, 0, 1, -1, 0, 0, 0, 0, 0, 1, -1, 0, 0, 0, 0, 0, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1
Offset: 0

Views

Author

Paul Barry, Feb 06 2005

Keywords

Comments

Triangle T(n,k), 0 <= k <= n, read by rows given by [ -1, 2, 0, 0, 0, 0, 0, ...] DELTA [1, 0, -1/2, 1/2, 0, 0, 0, 0, 0, ...] where DELTA is the operator defined in A084938. - Philippe Deléham, May 01 2007

Examples

			Triangle begins
   1;
  -1, 1;
  -1, 0, 1;
  -1, 0, 0, 1;
  -1, 0, 0, 0, 1;
  -1, 0, 0, 0, 0, 1;
  -1, 0, 0, 0, 0, 0, 1;
  -1, 0, 0, 0, 0, 0, 0, 1;
  -1, 0, 0, 0, 0, 0, 0, 0, 1;
  -1, 0, 0, 0, 0, 0, 0, 0, 0, 1;
  -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1;
Production matrix begins
  -1, 1;
  -2, 1, 1;
  -2, 1, 0, 1;
  -2, 1, 0, 0, 1;
  -2, 1, 0, 0, 0, 1;
  -2, 1, 0, 0, 0, 0, 1;
  -2, 1, 0, 0, 0, 0, 0, 1;
  -2, 1, 0, 0, 0, 0, 0, 0, 1;
		

Crossrefs

Cf. A000007 (row sums), A103453, A103454, A103455.

Programs

Formula

T(n,k) = 1 if k = n, -1 if k = 0, otherwise 0.
Sum_{k=0..n} T(n, k) = 0^n (row sums).
Sum_{k=0..floor(n/2)} T(n-k, k) = 0^n - (1-(-1)^n)/2 (diagonal sums).
G.f.: (1 - 2*x + y*x^2)/((1-x)*(1-y*x)). - Philippe Deléham, Feb 11 2012