OFFSET
0,2
COMMENTS
It's helpful to define A072272 first: Consider only the four nearest (N,S,E,W) neighbors of a cell together with the cell itself. In the next state, the state of a cell will change if an odd number of these five cells is ON. This is equivalent to taking the sum of all 4 neighbor cells, together with the cell itself, mod 2. A072272 is the total number of active cells per generation. This sequence differs from A072272 because the state of the next cell can be any odd number instead of 1. Instead of applying mod 2 to the sum of the 5 local cells, this variation takes the sum of the 5 local cells, and then sets the value to zero if that value is even.
The generations of A072272 are congruent mod 2 to the generations of this automaton. A consequence of this is that the pattern of active cells is the same between both implementations of the CA. However, the values of the cells in this automaton differ from those in A072272. In this variation the values of cell are not constrained to the range [0,1]. The terms in this sequence are the aggregate values of all cells for each generation, instead of the number of cells.
LINKS
Nathan Epstein, Animation of CA generating A323110
CROSSREFS
KEYWORD
nonn
AUTHOR
Nathan M Epstein, Jan 04 2019
STATUS
approved