OFFSET
1
COMMENTS
Equally, column immediately right of the middle column of rule-86 1-D cellular automaton, when started from a lone 1 cell.
LINKS
FORMULA
EXAMPLE
The evolution of one-dimensional cellular automaton rule 30 proceeds as follows, when started from a single alive (1) cell:
---------------------------------------------- a(n)
0: 1
1: (1)11 1
2: 1(1)001 1
3: 11(0)1111 0
4: 110(0)10001 0
5: 1101(1)110111 1
6: 11001(0)0001001 0
7: 110111(1)00111111 1
8: 1100100(0)111000001 0
9: 11011110(1)1001000111 1
10: 110010000(1)01111011001 1
11: 1101111001(1)010000101111 1
12: 11001000111(0)0110011010001 0
13: 110111101100(1)11011100110111 1
For this sequence, we pick the bit immediately left of the center (marked here with parentheses).
MATHEMATICA
Rest@ CellularAutomaton[30, {{1}, 0}, {106, {{-1}}}] (* Michael De Vlieger, Oct 04 2019 *)
PROG
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Oct 04 2019
STATUS
approved