OFFSET
0,3
COMMENTS
Similar to A288577, except the "x-1" term causes this sequence to return to 0 infinitely often, whereas A288577 is only 0 at the 0th term.
This is the limit of a series of iterations. The length of each iteration is given by A000213, beginning with the second term of that sequence (1, 3, 5, 8, 17, etc.):
0
0, 1, 2
0, 1, 2, 0, 4
0, 1, 2, 0, 4, 0, 1, 2, 3
0, 1, 2, 0, 4, 0, 1, 2, 3, 0, 1, 2, 0, 4, 3, 4, 5
When written in blocks in this way, each subsequent block is the concatenation of the previous block, the second-previous block, and the third-previous block, with each term incremented by 3.
MATHEMATICA
SubstitutionSystem[{x_ -> Switch[Mod[x, 3], 0, {x, x+1, x+2}, 1, {x-1}, 2, {x+2}]}, {0}, 7] // Last (* Jean-François Alcover, Jan 21 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Kerry Mitchell, Jul 03 2017
STATUS
approved