OFFSET
1,12
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..1000
Michael Brunnbauer, Diagonals in elementary cellular automaton 30, 2019 (local PDF copy, with author's permission).
Eric S. Rowland, Local Nested Structure in Rule 30, Complex Systems 16 (2006), pp. 239-258.
Eric Weisstein's World of Mathematics, Rule 30.
Stephen Wolfram, Notes on Chapter 2, Rule 30, from A New Kind of Science Online, Wolfram Media, 2002.
Stephen Wolfram, Announcing the Rule 30 Prizes, Stephen Wolfram Writings, 2019.
Paolo Xausa, First 1000 evolution steps, with transient cells in blue shades.
EXAMPLE
In the following diagram, showing the first 22 evolution steps of the CA, three diagonals are highlighted, along with their transient and periodic parts (the rest of the CA is represented by hyphens, for better visualization).
.
3rd diagonal
__ Transient = 1
- / Repeat = 0
--1 a(3) = 1
--0--
--0---- 12th diagonal
--0------ __ Transient = 01
--0--------/ Repeat = 0010
--0--------0- a(12) = 2
--0--------1---
--0--------0----- __ 20th diagonal
--0--------0-------/ Transient = 01000101
--0--------1-------0- Repeat = 1100
--0--------0-------1--- a(20) = 8
--0--------0-------0-----
--0--------0-------0-------
--0--------1-------0---------
--0--------0-------1-----------
--0--------0-------0-------------
--0--------0-------1---------------
--0--------1-------1-----------------
--0--------0-------1-------------------
--0--------0-------0---------------------
--0--------0-------0-----------------------
--0--------1-------1-------------------------
.
In the following diagram the transient cells on every diagonal are represented by asterisks. This results in the division of the CA into two regions: ordered behavior on the left, and apparently chaotic behavior on the right. The boundary between the two regions moves to the left, on average, by about 0.252 cells every evolution step (see Wolfram, 2002 and 2019).
.
-
--*
-----
-------
---------
----------*
-----------*-
-----------*-**
-------------****
-------------******
--------------*******
---------------********
Order ---------------********** Disorder
----------------***********
----------------*************
----------------*-*************
------------------***************
------------------*****************
------------------*-*****************
------------------*-*******************
--------------------*********************
--------------------***********************
--------------------*************************
.
MATHEMATICA
A363346list[nmax_]:=With[{ca=CellularAutomaton[86, {{1}, 0}, {2nmax, {1-nmax, nmax}}]}, Array[Length[First[FindTransientRepeat[Drop[Diagonal[ca, nmax-#], Ceiling[(#-1)/2]], 2]]]&, nmax]]; A363346list[100]
PROG
(Python) # See Brunnbauer link, Appendix 3.
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo Xausa, May 28 2023
STATUS
approved