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.

A133081 An interpolation operator, companion to A133080.

Original entry on oeis.org

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

Views

Author

Gary W. Adamson, Sep 09 2007

Keywords

Comments

A133081 * [1,2,3,...] = A133090: (1, 1, 5, 3, 9, 5, 13, 7, 17, ...).
A133080: diagonal and subdiagonal are switched.

Examples

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

Crossrefs

Cf. A133080, A133090, A040001 (row sums).

Programs

  • PARI
    row(n) = vector(n, k, if (k==n-1, 1, if (k==n, n%2)));
    lista(nn) = my(list=List()); for (n=1, nn, my(v=row(n)); for (k=1, #v, listput(list, v[k]))); Vec(list); \\ Michel Marcus, Mar 06 2022

Formula

Infinite lower triangular matrix, (1,0,1,0,...) in the main diagonal and (1,1,1,...) in the subdiagonal.

Extensions

More terms from Michel Marcus, Mar 06 2022