login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A269810 Number of active (ON, black) cells in n-th stage of growth of two-dimensional cellular automaton defined by "Rule 33", based on the 5-celled von Neumann neighborhood. 4
1, 4, 5, 32, 9, 92, 21, 164, 25, 288, 37, 420, 57, 572, 85, 732, 89, 984, 101, 1244, 121, 1520, 165, 1772, 209, 2084, 269, 2412, 281, 2748, 349, 3084, 353, 3592, 365, 4108, 385, 4640, 429, 5148, 473, 5712, 549, 6260, 601, 6784, 741, 7308, 753, 7940, 877 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Initialized with a single black (ON) cell at stage zero.
REFERENCES
S. Wolfram, A New Kind of Science, Wolfram Media, 2002; p. 170.
LINKS
N. J. A. Sloane, On the Number of ON Cells in Cellular Automata, arXiv:1503.01168 [math.CO], 2015
Eric Weisstein's World of Mathematics, Elementary Cellular Automaton
MATHEMATICA
rule=33; stages=300;
ca=CellularAutomaton[{rule, {2, {{0, 2, 0}, {2, 1, 2}, {0, 2, 0}}}, {1, 1}}, {{{1}}, 0}, stages]; (* Start with single black cell *)
l=Length[ca[[1]]]; k=(l+1)/2; s=stages; (* Limit scope to one cell growth per stage *)
ca=Table[Table[Part[ca[[n]][[j]], Range[Max[1, k+1-n], Min[l, k-1+n]]], {j, Max[1, k+1-n], Min[l, k-1+n]}], {n, 1, s+1}];
Map[Function[Apply[Plus, Flatten[#1]]], ca] (* Count ON cells at each stage *)
CROSSREFS
Sequence in context: A326998 A270286 A271803 * A271125 A270014 A271160
KEYWORD
nonn,easy,changed
AUTHOR
Robert Price, Mar 05 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 30 02:15 EDT 2024. Contains 374734 sequences. (Running on oeis4.)