OFFSET
0,2
REFERENCES
S. Wolfram, A New Kind of Science, Wolfram Media, 2002; p. 55.
LINKS
Robert Price, Table of n, a(n) for n = 0..1000
Eric Weisstein's World of Mathematics, Elementary Cellular Automaton
Eric Weisstein's World of Mathematics, Rule 126
S. Wolfram, A New Kind of Science
MAPLE
A267367 := proc(n) local i, s, z; s := 0; i := n; z := 1;
while 0 <= i do s := s+2^i; i := i-z; z := z+z od; s end:
seq(A267367(n), n=0..32); # Peter Luschny, Dec 02 2017
MATHEMATICA
rule=126; 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 *) mc=Table[catri[[k]][[k]], {k, 1, rows}]; (* Keep only middle cell from each row *) Table[FromDigits[Take[mc, k], 2], {k, 1, rows}] (* Binary Representation of Middle Column *)
PROG
(Python)
def A267367(n):
i, s, z = n, 0, 1
while 0 <= i: s += 1<<i; i -= z; z += z
return s
print([A267367(n) for n in range(33)]) # Peter Luschny, Dec 02 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Robert Price, Jan 13 2016
STATUS
approved