A265322 Number of OFF (white) cells in the n-th iteration of the "Rule 110" elementary cellular automaton starting with a single ON (black) cell.
0, 1, 2, 4, 4, 8, 8, 9, 9, 14, 15, 15, 17, 19, 18, 20, 20, 26, 26, 28, 28, 29, 29, 33, 35, 38, 40, 38, 35, 39, 45, 46, 41, 48, 55, 52, 48, 57, 57, 54, 57, 64, 61, 56, 62, 65, 69, 73, 65, 68, 73, 79, 76, 73, 79, 80, 76, 81, 83, 83, 86, 89, 90, 91, 86, 91, 97
Offset: 0
References
- S. Wolfram, A New Kind of Science, Wolfram Media, 2002; p. 55.
Links
- Paolo Xausa, Table of n, a(n) for n = 0..5000 (terms 0..999 from Robert Price)
- Eric Weisstein's World of Mathematics, Elementary Cellular Automaton
- Index entries for sequences related to cellular automata
- Index to Elementary Cellular Automata
Crossrefs
Cf. A075437.
Programs
-
Mathematica
A265322list[nmax_]:=Range[1,2nmax+1,2]-Map[Total,CellularAutomaton[110,{{1},0},nmax]];A265322list[100] (* Paolo Xausa, Oct 04 2023 *)