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.

A129185 Shift operator, left.

Original entry on oeis.org

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

Views

Author

Gary W. Adamson, Apr 01 2007

Keywords

Comments

Let A129185 = M, then M*V (V a vector), shifts V to the left. Example M*V, V = [1, 2, 3, ...] = [2, 3, 4, ...]. A129184 = right shift operator.

Examples

			First few rows of the matrix:
  0, 1;
  0, 0, 1;
  0, 0, 0, 1;
  0, 0, 0, 0, 1;
  ...
		

Crossrefs

Programs

  • Mathematica
    Table[PadLeft[{1},n,0],{n,20}]//Flatten//Rest (* Harvey P. Dale, Jul 11 2020 *)

Formula

As an infinite matrix, all 1's in the superdiagonal and the rest zeros.