login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A267452 Total number of ON (black) cells after n iterations of the "Rule 131" elementary cellular automaton starting with a single ON (black) cell. 1
1, 2, 4, 6, 10, 13, 19, 24, 30, 37, 46, 53, 63, 73, 84, 95, 108, 120, 135, 149, 164, 180, 198, 214, 233, 252, 272, 292, 314, 335, 359, 382, 406, 431, 458, 483, 511, 539, 568, 597, 628, 658, 691, 723, 756, 790, 826, 860, 897, 934, 972, 1010, 1050, 1089, 1131 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
REFERENCES
S. Wolfram, A New Kind of Science, Wolfram Media, 2002; p. 55.
LINKS
Eric Weisstein's World of Mathematics, Elementary Cellular Automaton
FORMULA
Conjectures from Colin Barker, Jan 15 2016 and Apr 19 2019: (Start)
a(n) = a(n-1)+a(n-3)-a(n-5)-a(n-7)+a(n-8) for n>7.
G.f.: (1+x+2*x^2+x^3+2*x^4+2*x^6) / ((1-x)^3*(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 *) nbc=Table[Total[catri[[k]]], {k, 1, rows}]; (* Number of Black cells in stage n *) Table[Total[Take[nbc, k]], {k, 1, rows}] (* Number of Black cells through stage n *)
CROSSREFS
Cf. A267418.
Sequence in context: A354673 A309616 A365321 * A140652 A007981 A258847
KEYWORD
nonn
AUTHOR
Robert Price, Jan 15 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 29 05:28 EDT 2024. Contains 371264 sequences. (Running on oeis4.)