login
A269814
Number of active (ON, black) cells in n-th stage of growth of two-dimensional cellular automaton defined by "Rule 35", based on the 5-celled von Neumann neighborhood.
4
1, 5, 5, 37, 9, 101, 21, 185, 29, 313, 41, 457, 69, 629, 101, 817, 117, 1073, 129, 1345, 157, 1641, 209, 1937, 261, 2285, 309, 2641, 381, 3029, 453, 3425, 485, 3937, 497, 4465, 525, 5017, 577, 5569, 629, 6169, 697, 6761, 805, 7369, 929, 7969, 1029, 8669
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.
MATHEMATICA
rule=35; 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 *)
Map[Function[Apply[Plus, Flatten[#1]]], ca] (* Count ON cells at each stage *)
CROSSREFS
Sequence in context: A270897 A270325 A270930 * A270018 A269876 A139386
KEYWORD
nonn,easy
AUTHOR
Robert Price, Mar 05 2016
STATUS
approved