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

A108121
A three-symbol substitution sequence with characteristic polynomial: x^3-x^2-2*x-1.
0
3, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 1, 2, 2, 3, 2, 3, 3, 1, 2, 2, 3, 3, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 1, 2, 2, 3, 2, 3, 3, 1, 2, 2, 3, 3, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 1, 2, 2, 3, 2, 3, 3, 1, 2, 2, 3, 3, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 1, 2
OFFSET
0,1
COMMENTS
This substitution is unique in that it gives a two part tile that only tiles aperiodically.
FORMULA
1->{2}, 2->{3}, 3->{1, 2, 2, 3}
MATHEMATICA
s[1] = {2}; s[2] = {3}; s[3] = {1, 2, 2, 3}; t[a_] := Flatten[s /@ a]; p[0] = {1}; p[1] = t[p[0]]; p[n_] := t[p[n - 1]] aa = p[8]
CROSSREFS
Sequence in context: A085247 A003016 A328848 * A161916 A072548 A079399
KEYWORD
nonn,uned
AUTHOR
Roger L. Bagula, Jun 04 2005
STATUS
approved