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

A267451
Number of ON (black) cells in the n-th iteration of the "Rule 131" elementary cellular automaton starting with a single ON (black) cell.
1
1, 1, 2, 2, 4, 3, 6, 5, 6, 7, 9, 7, 10, 10, 11, 11, 13, 12, 15, 14, 15, 16, 18, 16, 19, 19, 20, 20, 22, 21, 24, 23, 24, 25, 27, 25, 28, 28, 29, 29, 31, 30, 33, 32, 33, 34, 36, 34, 37, 37, 38, 38, 40, 39, 42, 41, 42, 43, 45, 43, 46, 46, 47, 47, 49, 48, 51, 50
OFFSET
0,3
REFERENCES
S. Wolfram, A New Kind of Science, Wolfram Media, 2002; p. 55.
FORMULA
Conjectures from Colin Barker, Jan 15 2016 and Apr 19 2019: (Start)
a(n) = a(n-3)+a(n-4)-a(n-7) for n>6.
G.f.: (1+x+2*x^2+x^3+2*x^4+2*x^6) / ((1-x)^2*(1+x)*(1+x^2)*(1+x+x^2)).
(End)
MATHEMATICA
rule=131; 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. A267418.
Sequence in context: A352956 A304214 A060367 * A062968 A239966 A341465
KEYWORD
nonn
AUTHOR
Robert Price, Jan 15 2016
STATUS
approved