Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #30 Jul 24 2024 14:46:10
%S 0,0,4,4,16,16,24,24,56,56,64,64,96,96,120,120,200,200,208,208,240,
%T 240,264,264,352,352,376,376,472,472,544,544,744,744,752,752,784,784,
%U 808,808,896,896,920,920,1016,1016,1088,1088,1312,1312,1336,1336,1432
%N Number of "POISONED" cells after n stages of the "Ulam-Warburton" two-dimensional cellular automaton.
%C Previous analysis of this cellular automaton have concentrated on cells that turn "ON". This sequence examines those cells that are never turned ON.
%C This cellular automaton is generated by Rule 686 using the Wolfram numbering scheme.
%C A "POISONED" cell is one in which no further generation can possibly utilize that cell. That is, previous generations have ensured that more than one neighbor has been turned ON.
%C See A147562 for extensive definitions, references and links for this cellular automaton.
%C Note that the offset is zero, which implies that the initial cell is at stage n=1. This corresponds to that of A147562 where a(0)=0, a(1)=1, a(2)=5, etc. The Singmaster reference implies a(0)=1, a(1)=5, etc. The choice of offset is arbitrary and neither seems to be ideal.
%C Observations:
%C Cells are referenced by their coordinates on the x,y-plane with the initial cell at (0,0).
%C G(i,j) is the generation where cell (i,j) is turned ON.
%C P(i,j) is the generation where cell (i,j) is POISONED.
%C Due to symmetry, analysis of only the (+,+) quadrant is necessary.
%C G(0,j) = j+1;
%C G(i,0) = i+1;
%C G(k,2^n-1-k) = 2^n;
%C G(2^n-1-k,k) = 2^n;
%C G(1,j) = j+2, when j is even;
%C G(i,1) = i+2, when i is even;
%C P(1,j) = j+1, when j is odd;
%C P(i,1) = i+1, when i is odd;
%C P(i,j) = k, when i,j are odd (a formula for k is not known at this time);
%C P(i,j) = 2^k when i=j>0, k=floor(log_2(i-1))+2.
%C After iterations 2^k, all cells with i+j<=2^k are either ON or POISONED.
%C On iterations 2^k+1, only 4 cells turned on: (0,2^k), (2^k,0), (0,-2^k), (-2^k,0).
%C Newly turned ON cells are always adjacent to one turned ON in the previous generation.
%C Number of POISONED cells approach 1/2 the number of ON cells as n increases.
%D D. Singmaster, On the cellular automaton of Ulam and Warburton, M500 Magazine of the Open University, #195 (December 2003), pp. 2-7.
%D S. Ulam, On some mathematical problems connected with patterns of growth of figures, pp. 215-224 of R. E. Bellman, ed., Mathematical Problems in the Biological Sciences, Proc. Sympos. Applied Math., Vol. 14, Amer. Math. Soc., 1962.
%D S. Wolfram, A New Kind of Science, Wolfram Media, 2002; p. 928.
%H Robert Price and JungHwan Min, <a href="/A264039/b264039.txt">Table of n, a(n) for n = 0..2500</a> [Terms 0 through 1030 were computed by Robert Price; terms 1031 through 2500 by JungHwan Min, Jan 25 2016]
%H N. J. A. Sloane, <a href="http://arxiv.org/abs/1503.01168">On the Number of ON Cells in Cellular Automata</a>, arXiv:1503.01168 [math.CO], 2015.
%H N. J. A. Sloane, <a href="/wiki/Catalog_of_Toothpick_and_CA_Sequences_in_OEIS">Catalog of Toothpick and Cellular Automata Sequences in the OEIS</a>
%H <a href="/index/Ce#cell">Index entries for sequences related to cellular automata</a>
%t A264039[0] = 0; A264039[n_] := Count[CellularAutomaton[{87187427557048763150324539564085781570417592761754781363597847633270219467927638113927266203006607594674647506320503, 3, {{0, 1}, {-1, 0}, {0, 0}, {1, 0}, {0, -1}}}, {{{1}}, 0}, {{{n}}}], 2, 2] (* _JungHwan Min_, Jan 25 2016 *)
%t A264039[0] = 0; A264039[n_] := Total[With[{m = n - 1}, CellularAutomaton[{336, {2, {{0, 2, 0}, {2, 1, 2}, {0, 2, 0}}}, {1, 1}}, #, {{{1}}}] &@ CellularAutomaton[{686, {2, {{0, 2, 0}, {2, 1, 2}, {0, 2, 0}}}, {1, 1}}, {{{1}}, 0}, {{{m}}}]], 2] (* _JungHwan Min_, Jan 25 2016 *)
%Y Cf. A147562, A147582.
%Y Cumulative sums of A260490.
%K nonn
%O 0,3
%A _Robert Price_, Nov 01 2015