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.

A177990 Triangle read by rows, variant of A070909, a cellular automaton.

Original entry on oeis.org

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

Views

Author

Gary W. Adamson, May 16 2010

Keywords

Comments

Examples

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

Crossrefs

Programs

  • Mathematica
    rows = 10; ca = CellularAutomaton[28, {{1}, 0}, rows]; Table[ca[[k, 2 ;; k]], {k, 2, rows+1}] // Flatten (* Jean-François Alcover, Jul 12 2017 *)

Formula

Infinite lower triangular matrix, variant of A070909: Columns alternate between (1,0,0,0,...) and (1,1,1,...); whereas A070909 leftmost column = (1,1,1,...).