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

A369206
Irregular triangle read by rows: row n lists the number of U characters for each of the strings of the MIU formal system at the n-th level of the tree generated by recursively applying the system rules, starting from the MI string.
4
0, 1, 0, 2, 1, 0, 4, 2, 1, 0, 1, 1, 8, 4, 2, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 16, 8, 4, 3, 3, 3, 3, 4, 4, 0, 2, 2, 2, 2, 2, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4, 4
OFFSET
0,4
COMMENTS
See A368946 for the description of the MIU formal system and the triangle of corresponding strings.
REFERENCES
Douglas R. Hofstadter, Gödel, Escher, Bach: an Eternal Golden Braid, Basic Books, 1979, pp. 33-41 and pp. 261-262.
LINKS
Paolo Xausa, Table of n, a(n) for n = 0..3670 (rows 0..7 of the triangle, flattened).
Wikipedia, MU Puzzle.
FORMULA
T(n,k) = A055641(A368946(n,k)).
T(n,k) = A369172(n,k) - A369207(n,k) - 1.
EXAMPLE
Triangle begins:
[0] 0;
[1] 1 0;
[2] 2 1 0;
[3] 4 2 1 0 1 1;
[4] 8 4 2 2 2 1 0 1 1 1 1 1 1 2 2 2;
...
MATHEMATICA
MIUStepOW3[s_] := Flatten[Map[{If[StringEndsQ[#, "1"], # <> "0", Nothing], # <> #, StringReplaceList[#, "111" -> "0"], StringReplaceList[#, "00" -> ""]}&, s]];
With[{rowmax = 5}, Map[StringCount[#, "0"]&, NestList[MIUStepOW3, {"1"}, rowmax]]]
CROSSREFS
Cf. A055641, A368946, A368947 (row lengths), A369172, A369207 (number of ones).
Sequence in context: A261877 A062296 A249343 * A378015 A378014 A355756
KEYWORD
nonn,base,tabf
AUTHOR
Paolo Xausa, Jan 16 2024
STATUS
approved