cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

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.

This page as a plain text file.
%I A091675 #11 Oct 20 2019 22:03:53
%S A091675 1,3,21,22,26,29,31,55,256,258,262,266,269,271,282,286,287,302,312,
%T A091675 413,479,511,519,551,555,719,795,799,1026,1029,1034,1037,1066,1549,
%U A091675 1790,2863,3087,3119,4096,4098,4102,4104,4106,4108,4109,4113,4114,4116,4117
%N 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.
%C A091675 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.
%C A091675 Base-4 analog of A070788.
%H A091675 Klaus Brockhaus, <a href="/A091675/a091675.gif">Illustration: Distribution of terms below 2000000</a>
%H A091675 <a href="/index/Res#RAA">Index entries for sequences related to Reverse and Add!</a>
%e A091675 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.
%t A091675 limit = 10^3; utraj = {};
%t A091675 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 *)
%Y A091675 Cf. A035524, A075421, A070788.
%K A091675 base,nonn
%O A091675 1,2
%A A091675 _Klaus Brockhaus_, Jan 28 2004