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

A071032
Triangle read by rows giving successive states of cellular automaton generated by "Rule 86".
6
1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1
OFFSET
0,1
COMMENTS
Row n has length 2n+1.
REFERENCES
S. Wolfram, A New Kind of Science, Wolfram Media, 2002; Chapter 3.
FORMULA
T(n,k) = A070950(n,2*n+1-k), 0 <= k <= 2*n+1. - Reinhard Zumkeller, Jun 08 2013
MATHEMATICA
A071032list[rowmax_]:=MapIndexed[ArrayPad[#1, #2-rowmax-1]&, CellularAutomaton[86, {{1}, 0}, rowmax]]; A071032list[10] (* Generates 11 rows *) (* Paolo Xausa, Jun 01 2023 *)
PROG
(Haskell)
a071032 n k = a071032_tabf !! n !! k
a071032_row n = a071032_tabf !! n
a071032_tabf = map reverse a070950_tabf
-- Reinhard Zumkeller, Jun 08 2013
CROSSREFS
Cf. A005408 (row lengths), A070952 (row sums), A051023 (central terms), A070950 (mirror image, rule 30), A226464 (complemented, rule 149).
Sequence in context: A104037 A014044 A014079 * A071034 A089497 A355937
KEYWORD
nonn,tabf
AUTHOR
Hans Havermann, May 26 2002
EXTENSIONS
Corrected by Hans Havermann, Jan 07 2012
STATUS
approved