login

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”).

A266303
Number of ON (black) cells in the n-th iteration of the "Rule 15" elementary cellular automaton starting with a single ON (black) cell.
2
1, 2, 1, 6, 1, 10, 1, 14, 1, 18, 1, 22, 1, 26, 1, 30, 1, 34, 1, 38, 1, 42, 1, 46, 1, 50, 1, 54, 1, 58, 1, 62, 1, 66, 1, 70, 1, 74, 1, 78, 1, 82, 1, 86, 1, 90, 1, 94, 1, 98, 1, 102, 1, 106, 1, 110, 1, 114, 1, 118, 1, 122, 1, 126, 1, 130, 1, 134, 1, 138, 1
OFFSET
0,2
REFERENCES
S. Wolfram, A New Kind of Science, Wolfram Media, 2002; p. 55.
FORMULA
Conjectures from Colin Barker, Dec 28 2015 and Apr 15 2019: (Start)
a(n) = (1+(-1)^n-2*(-1+(-1)^n)*n)/2.
a(n) = 2*a(n-2)-a(n-4) for n>3.
G.f.: (1+2*x-x^2+2*x^3) / ((1-x)^2*(1+x)^2).
(End)
MATHEMATICA
rule=15; rows=20; ca=CellularAutomaton[rule, {{1}, 0}, rows-1, {All, All}]; (* Start with single black cell *) catri=Table[Take[ca[[k]], {rows-k+1, rows+k-1}], {k, 1, rows}]; (* Truncated list of each row *) Table[Total[catri[[k]]], {k, 1, rows}] (* Number of Black cells in stage n *)
CROSSREFS
Cf. A266300.
Sequence in context: A274085 A302129 A191093 * A267354 A139625 A053785
KEYWORD
nonn,easy
AUTHOR
Robert Price, Dec 26 2015
STATUS
approved