OFFSET
1,1
COMMENTS
See A392245 for further details.
All terms are odd since position -1 can be reached from position 0 only with an odd number of +-1 steps. (This holds obviously for any 1-dimensional movement.) - M. F. Hasler, Feb 08 2026
LINKS
Sean A. Irvine, Table of n, a(n) for n = 1..1000
Michael S. Branicky, Python programs for Wolfram's 2-state 2-symbol TMs 1285, 3333 and 261.
Stephen Wolfram, P vs. NP and the Difficulty of Computation: A Ruliological Approach, 2026.
Wolfram Research, The Wolfram Atlas of Simple Programs: Machine 261.
FORMULA
a(n) = 3 iff n = 0 (mod 4); a(n) = 5 iff n = 1 (mod 8); a(n) = 7 iff n = 2 or 3 (mod 16); a(n) = 9 iff n = 5, 6 or 7 (mod 32); a(n) = 11 iff n = 10, 11, 13, 14 or 15 (mod 64), etc. - M. F. Hasler, Feb 08 2026
MATHEMATICA
With[{lim = 74}, PacletSymbol["WolframInstitute/TuringMachine", "OneSidedTuringMachineFunction"][{261, 2, 2}, {1, lim}, lim, "Steps"] ] (* Michael De Vlieger, Feb 06 2026, modified from 5th example in "The Basic Setup" in "P vs. NP ..." *)
PROG
(Python) # see linked program
(PARI) A393106(n)=A393103(n, 261); \\ Cf. A393103 for the function; this uses just a different rule. - M. F. Hasler, Feb 08 2026
CROSSREFS
KEYWORD
nonn
AUTHOR
Sean A. Irvine, Feb 01 2026
STATUS
approved
