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

A106581
Alternating two level four-symbol substitution: characteristic polynomial: x^2*(x^2-3).
0
2, 4, 3, 1, 2, 2, 2, 4, 3, 1, 4, 3, 1, 4, 3, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3
OFFSET
0,1
COMMENTS
A triangle shaped digraph with one central point. Triangular levels as: {2}, {4, 3, 1}, {2, 2, 2}, {4, 3, 1, 4, 3, 1, 4, 3, 1}, {2, 2, 2, 2, 2, 2, 2, 2, 2}, {4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3, 1, 4, 3,1, 4, 3,1}, {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2,2}
FORMULA
1->{2}, 2->{4, 3, 1}, 3->{2}, 4->{2}.
MATHEMATICA
s[1] = {2}; s[2] = {4, 3, 1}; s[3] = {2}; s[4] = {2};
t[a_] := Flatten[s /@ a];
p[0] = {2}; p[n_] := t[p[n - 1]];
Table[p[i], {i, 0, 7}]//Flatten
CROSSREFS
Sequence in context: A134893 A227862 A229802 * A317612 A070402 A125941
KEYWORD
nonn,uned
AUTHOR
Roger L. Bagula, May 09 2005
STATUS
approved