A177990 Triangle read by rows, variant of A070909, a cellular automaton.
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
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; ...
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 *)
Comments