Simulate a Turing machine from a rule number and initial conditions.
TuringMachine[rule, init, t]
TuringMachine[rule, init]
TuringMachine[rule]
TuringMachine[2506, {{1}, {0, 1, 0}}, 0]
→ {{{1, 1, 0}, {0, 1, 0}}}TuringMachine[2506, {1, {0, 0, 0, 0}}, 3]
→ {{{1, 1, 0}, {0, 0, 0, 0}}, {{2, 2, 1}, {1, 0, 0, 0}}, {{1, 1, 0}, {1, 1, 0, 0}}, {{2, 4, -1}, {0, 1, 0, 0}}}TuringMachine[2506, {1, {{}, 0}}, 4]
→ {{{1, 3, 0}, {0, 0, 0, 0}}, {{2, 4, 1}, {0, 0, 1, 0}}, {{1, 3, 0}, {0, 0, 1, 1}}, {{2, 2, -1}, {0, 0, 0, 1}}, {{1, 1, -2}, {0, 1, 0, 1}}}TuringMachine[2506][{1, {{}, 0}}]
→ {{2, 2, 1}, {{1, 0}, 0}}