OFFSET
0,2
COMMENTS
The Choix de Bruxelles doubles or halves some decimal digit substring and rows of A323286 are all ways this can be done.
So a(n) is the smallest term of the row a(n-1) of A323286 which is not among {a(0..n-1)}.
The sequence is finite since having reached 18 -> 9 the sole Choix for 9 would be back to 18, which is already in the sequence.
LINKS
Eric Angelini, Lars Blomberg, Charlie Neder, Remy Sigrist, and N. J. A. Sloane, "Choix de Bruxelles": A New Operation on Positive Integers, arXiv:1902.01444 [math.NT], Feb 2019; Fib. Quart. 57:3 (2019), 195-200.
Alon Vinkler, C# Program
EXAMPLE
Below, square brackets [] represent multiplication by 2 (e.g., [6] = 12); curly brackets {} represent division by 2 (e.g., {6} = 3); digits outside the brackets are not affected by the multiplication or division (e.g., 1[6] = 112 and 1{14} = 17).
We begin with 1 and, at each step, we go to the smallest number possible that hasn't yet appeared in the sequence:
1 --> [1] = 2
2 --> [2] = 4
4 --> [4] = 8
8 --> [8] = 16
16 --> 1{6} = 13
13 --> [1]3 = 23
23 --> 2[3] = 26
26 --> [2]6 = 46
... and so on.
PROG
(C#) //(see in links)
CROSSREFS
KEYWORD
nonn,easy,base,fini,full
AUTHOR
Alon Vinkler, Nov 26 2022
STATUS
approved