OFFSET
0,1
COMMENTS
290 is conjectured (cf. A066450) to be the smallest number such that the Reverse and Add! algorithm in base 4 does not lead to a palindrome. Unlike 318 (cf. A075153) its trajectory does not exhibit any recognizable regularity, so that the method by which the base 4 trajectory of 318 as well as the base 2 trajectories of 22 (cf. A061561), 77 (cf. A075253), 442 (cf. A075268) etc. can be proved to be palindrome-free (cf. Links), is not applicable here.
LINKS
Klaus Brockhaus, On the 'Reverse and Add!' algorithm in base 2
David J. Seal, Results
EXAMPLE
290 (decimal) = 10202 -> 10202 + 20201 = 31003 = 835 (decimal).
MATHEMATICA
NestWhileList[# + IntegerReverse[#, 4] &, 290, # !=
IntegerReverse[#, 4] &, 1, 23] (* Robert Price, Oct 18 2019 *)
PROG
(PARI) {m=290; stop=26; c=0; while(c<stop, print1(k=m, ", "); rev=0; while(k>0, d=divrem(k, 4); k=d[1]; rev=4*rev+d[2]); c++; m=m+rev)}
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Klaus Brockhaus, Sep 12 2002
STATUS
approved