cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A267445 Number of ON (black) cells in the n-th iteration of the "Rule 129" elementary cellular automaton starting with a single ON (black) cell.

Original entry on oeis.org

1, 0, 1, 0, 5, 3, 5, 0, 13, 11, 13, 7, 17, 11, 13, 0, 29, 27, 29, 23, 33, 27, 29, 15, 41, 35, 37, 23, 41, 27, 29, 0, 61, 59, 61, 55, 65, 59, 61, 47, 73, 67, 69, 55, 73, 59, 61, 31, 89, 83, 85, 71, 89, 75, 77, 47, 97, 83, 85, 55, 89, 59, 61, 0, 125, 123, 125
Offset: 0

Views

Author

Robert Price, Jan 15 2016

Keywords

References

  • S. Wolfram, A New Kind of Science, Wolfram Media, 2002; p. 55.

Crossrefs

Cf. A267417.

Programs

  • Mathematica
    rule=129; 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 *)

Formula

Conjecture: a(n) = A071050(n), n>0. - R. J. Mathar, Jan 17 2016
Showing 1-1 of 1 results.