login
A267537
Middle column of the "Rule 143" elementary cellular automaton starting with a single ON (black) cell.
3
1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
OFFSET
0
COMMENTS
Decimal expansion of 9901/90000. - Elmo R. Oliveira, Sep 24 2025
FORMULA
a(n)=1 for n>=4. - R. J. Mathar, Aug 07 2025
From Elmo R. Oliveira, Sep 24 2025: (Start)
G.f.: 1 + x + x^4/(1-x).
E.g.f.: exp(x) - x^2/2 - x^3/6. (End)
MATHEMATICA
rule=143; 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[catri[[k]][[k]], {k, 1, rows}] (* Keep only middle cell from each row *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Robert Price, Jan 16 2016
STATUS
approved