[go: up one dir, main page]

login
Search: a281849 -id:a281849
     Sort: relevance | references | number | modified | created      Format: long | short | data
Binary representation of the x-axis, from the left edge to the origin, of the n-th stage of growth of the two-dimensional cellular automaton defined by "Rule 405", based on the 5-celled von Neumann neighborhood.
+10
4
1, 10, 11, 1100, 101, 111010, 1101, 11110110, 11011, 1111100100, 100001, 111111001110, 1011011, 11111110100100, 11000001, 1111111101111110, 110000011, 111111111000111000, 1011101111, 11111111110100010000, 11001000111, 1111111111100010111100, 101101100001
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
CAStep[rule_, a_] := Map[rule[[10 - #]] &, ListConvolve[{{0, 2, 0}, {2, 1, 2}, {0, 2, 0}}, a, 2], {2}];
code = 405; stages = 128;
rule = IntegerDigits[code, 2, 10];
g = 2 * stages + 1; (* Maximum size of grid *)
a = PadLeft[{{1}}, {g, g}, 0, Floor[{g, g}/2]]; (* Initial ON cell on grid *)
ca = a;
ca = Table[ca = CAStep[rule, ca], {n, 1, stages + 1}];
PrependTo[ca, a];
(* Trim full grid to reflect growth by one cell at each stage *)
k = (Length[ca[[1]]] + 1)/2;
ca = Table[Table[Part[ca[[n]] [[j]], Range[k + 1 - n, k - 1 + n]], {j, k + 1 - n, k - 1 + n}], {n, 1, k}];
Table[FromDigits[Part[ca[[i]] [[i]], Range[1, i]], 10], {i, 1, stages - 1}]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Robert Price, Jan 31 2017
STATUS
approved
Decimal representation of the x-axis, from the left edge to the origin, of the n-th stage of growth of the two-dimensional cellular automaton defined by "Rule 405", based on the 5-celled von Neumann neighborhood.
+10
4
1, 2, 3, 12, 5, 58, 13, 246, 27, 996, 33, 4046, 91, 16292, 193, 65406, 387, 261688, 751, 1047824, 1607, 4192444, 2913, 16774542, 6843, 67102020, 8849, 268421422, 21595, 1073720228, 54977, 4294929790, 113283, 17179755896, 135887, 68719275312, 376375
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
CAStep[rule_, a_] := Map[rule[[10 - #]] &, ListConvolve[{{0, 2, 0}, {2, 1, 2}, {0, 2, 0}}, a, 2], {2}];
code = 405; stages = 128;
rule = IntegerDigits[code, 2, 10];
g = 2 * stages + 1; (* Maximum size of grid *)
a = PadLeft[{{1}}, {g, g}, 0, Floor[{g, g}/2]]; (* Initial ON cell on grid *)
ca = a;
ca = Table[ca = CAStep[rule, ca], {n, 1, stages + 1}];
PrependTo[ca, a];
(* Trim full grid to reflect growth by one cell at each stage *)
k = (Length[ca[[1]]] + 1)/2;
ca = Table[Table[Part[ca[[n]] [[j]], Range[k + 1 - n, k - 1 + n]], {j, k + 1 - n, k - 1 + n}], {n, 1, k}];
Table[FromDigits[Part[ca[[i]] [[i]], Range[1, i]], 2], {i, 1, stages - 1}]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Robert Price, Jan 31 2017
STATUS
approved
Decimal representation of the x-axis, from the origin to the right edge, of the n-th stage of growth of the two-dimensional cellular automaton defined by "Rule 405", based on the 5-celled von Neumann neighborhood.
+10
4
1, 1, 6, 3, 20, 23, 88, 111, 432, 159, 1056, 1855, 6976, 2431, 16768, 32511, 99072, 29183, 506368, 35839, 1854464, 1001471, 4417536, 7450623, 29011968, 9084927, 71966720, 122241023, 457523200, 158695423, 1102413824, 2125922303, 6488260608, 2055864319
OFFSET
0,3
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
CAStep[rule_, a_] := Map[rule[[10 - #]] &, ListConvolve[{{0, 2, 0}, {2, 1, 2}, {0, 2, 0}}, a, 2], {2}];
code = 405; stages = 128;
rule = IntegerDigits[code, 2, 10];
g = 2 * stages + 1; (* Maximum size of grid *)
a = PadLeft[{{1}}, {g, g}, 0, Floor[{g, g}/2]]; (* Initial ON cell on grid *)
ca = a;
ca = Table[ca = CAStep[rule, ca], {n, 1, stages + 1}];
PrependTo[ca, a];
(* Trim full grid to reflect growth by one cell at each stage *)
k = (Length[ca[[1]]] + 1)/2;
ca = Table[Table[Part[ca[[n]] [[j]], Range[k + 1 - n, k - 1 + n]], {j, k + 1 - n, k - 1 + n}], {n, 1, k}];
Table[FromDigits[Part[ca[[i]] [[i]], Range[i, 2 * i - 1]], 2], {i , 1, stages - 1}]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Robert Price, Jan 31 2017
STATUS
approved

Search completed in 0.012 seconds