login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A091675 Positive integers n such that the trajectory of n under the Reverse and Add! operation carried out in base 4 (presumably) does not join the trajectory of any m < n. 6
1, 3, 21, 22, 26, 29, 31, 55, 256, 258, 262, 266, 269, 271, 282, 286, 287, 302, 312, 413, 479, 511, 519, 551, 555, 719, 795, 799, 1026, 1029, 1034, 1037, 1066, 1549, 1790, 2863, 3087, 3119, 4096, 4098, 4102, 4104, 4106, 4108, 4109, 4113, 4114, 4116, 4117 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The conjecture that the base-4 trajectories of the terms do not join is based on the observation that if the trajectories of two integers below 4120 join, this happens after at most 28 steps, while for any two terms listed above the trajectories do not join within 1000 steps. For pairs from 1, 3, 21, 22, 26, 29, 31, 55 this has even been checked for 5000 steps.
Base-4 analog of A070788.
LINKS
EXAMPLE
The trajectory of 2 is part of the trajectory of 1 (cf. A035524); the trajectory of 3 does not join the trajectory of 1 within 10000 steps; the trajectory of 21 does not join the trajectory of 1 or of 3 within 10000 steps.
MATHEMATICA
limit = 10^3; utraj = {};
Select[Range[4120], (x = NestList[ # + IntegerReverse[#, 4] &, #, limit]; If[Intersection[x, utraj] == {}, utraj = Union[utraj, x]; True, utraj = Union[utraj, x]]) &] (* Robert Price, Oct 20 2019 *)
CROSSREFS
Sequence in context: A226319 A279842 A043081 * A067233 A007648 A273481
KEYWORD
base,nonn
AUTHOR
Klaus Brockhaus, Jan 28 2004
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 13:38 EDT 2024. Contains 371957 sequences. (Running on oeis4.)