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.

A181650 Inverse of number triangle A070909.

Original entry on oeis.org

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

Views

Author

Paul Barry, Nov 03 2010

Keywords

Comments

Generalized (conditional) Riordan array with k-th column generated by x^k*(1-x-x^2) if k is even, x^k otherwise.
Triangle T(n,k), read by rows, given by (-1,2,-1/2,-1/2,0,0,0,0,0,0,0,...) DELTA (1,0,-1,0,0,0,0,0,0,0,0,0,...) where DELTA is the operator defined in A084938. - Philippe Deléham, Nov 19 2011
Double Riordan array (1 - x - x^2; x/(1 - x - x^2), x*(1 - x - x^2)) as defined in Davenport et al. - Peter Bala, Aug 15 2021

Examples

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

Crossrefs

Formula

G.f.: (1+(y-1)*x-x^2)/((1-y*x)*(1+y*x)). - Philippe Deléham, Nov 19 2011