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

A three-symbol substitution sequence with characteristic polynomial: x^3-x^2-2*x-1.
0

%I #4 Mar 30 2012 17:34:16

%S 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,

%T 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,

%U 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

%N A three-symbol substitution sequence with characteristic polynomial: x^3-x^2-2*x-1.

%C This substitution is unique in that it gives a two part tile that only tiles aperiodically.

%F 1->{2}, 2->{3}, 3->{1, 2, 2, 3}

%t 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]

%K nonn,uned

%O 0,1

%A _Roger L. Bagula_, Jun 04 2005