OFFSET
0,1
COMMENTS
Population vanishes after 130 generations.
LINKS
MATHEMATICA
maxIter = 200; halfWidth = h = 100; GameOfLife = {224, {2, {{2, 2, 2}, {2, 1, 2}, {2, 2, 2}}}, {1, 1}}; grids = CellularAutomaton[GameOfLife, SparseArray[{{h + 3, h + 2} -> 1, {h - 3, h + 1} -> 1, {h - 2, h + 1} -> 1, {h - 2, h} -> 1, {h + 2, h} -> 1, {h + 3, h} -> 1, {h + 4, h} -> 1} ], 2h]; a[n_] := grids[[n + 1]] // Flatten // Total; Table[a[n], {n, 0, maxIter}] //. {a__, 0, 0} :> {a, 0}
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
Jean-François Alcover, Feb 21 2016
STATUS
approved