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

A106702
Four loop eight-symbol substitution.
0
1, 3, 3, 2, 4, 3, 2, 4, 2, 4, 1, 6, 8, 3, 2, 4, 2, 4, 1, 6, 8, 2, 4, 1, 6, 8, 1, 6, 8, 3, 7, 8, 4, 6, 3, 2, 4, 2, 4, 1, 6, 8, 2, 4, 1, 6, 8, 1, 6, 8, 3, 7, 8, 4, 6, 2, 4, 1, 6, 8, 1, 6, 8, 3, 7, 8, 4, 6, 1, 6, 8, 3, 7, 8, 4, 6, 3, 7, 8, 4, 6, 2, 4, 8, 4, 6, 6, 8, 7, 8, 3, 2, 4, 2, 4, 1, 6, 8, 2, 4, 1, 6, 8, 1, 6
OFFSET
0,2
FORMULA
1->{3}, 2->{1}, 3->{2, 4}, 4->{6, 8}, 5->{3}, 6->{7, 8}, 7->{8}, 8->{4, 6}
MATHEMATICA
s[1] = {3}; s[2] = {1}; s[3] = {2, 4}; s[4] = {6, 8}; s[5] = {3}; s[6] = {7, 8}; s[7] = {8}; s[8] = {4, 6}; t[a_] := Join[a, Flatten[s /@ a]]; p[0] = {1}; p[1] = t[{1}]; p[n_] := t[p[n - 1]]; p[6]//Flatten
CROSSREFS
Sequence in context: A049604 A247509 A106686 * A303338 A271510 A349661
KEYWORD
nonn,uned
AUTHOR
Roger L. Bagula, May 13 2005
STATUS
approved