In this video:
Stephen Wolfram talks about such an elementary cellular automaton at 17:01. Does anybody have an idea which one exactly he could be talking about?
In this video:
Stephen Wolfram talks about such an elementary cellular automaton at 17:01. Does anybody have an idea which one exactly he could be talking about?
There are more details — quite a lot more details — in the original Announcing the Rule 30 Prizes post on Stephen Wolfram's blog. In particular, the specific rule is named there:
As it turns out, the Mathematica code to generate the images (and thus simulate the rule) is also hidden on the blog post; selecting and copy-pasting the first image on the page, for example, yields the following code snippet:
If you'd rather not just try to figure out what that code does, I believe ANKoS page 60 (annoyingly, the blog post links to page 61) describes Wolfram's convention for numbering 1D totalistic CA rules and how to decode and simulate them. Specifically:
Just to confirm that decoding and applying the rule like this indeed yields output matching the images in the blog post, here's a simple Python program to simulate this rule on a finite wrap-around lattice:
Try it online!
Simulating this rule on a sufficiently wide lattice, starting from a single 1 cell on a background of 0 cells, one can observe that the center cell indeed eventually gets stuck in state 1 while its neighbors alternate quasi-randomly between states 1 and 3. Indeed, examining the base-4 rule code, it's not too hard to see why this particular configuration at the center of a symmetric pattern is invariant under the rule:
Thus, once the five center columns of a centrally symmetric pattern under this rule end up in the configuration "$a111a$" or "$b313b$", where $a$ is any state and $b$ is any state other than 2, they cannot ever again enter any configuration not of this kind.