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.

A243115 Starting values of the reduced Collatz function (A014682) where 2 to the power of the "dropping time" is greater than the starting value.

This page as a plain text file.
%I A243115 #193 Jan 12 2023 02:09:53
%S A243115 3,7,11,15,23,27,31,39,47,59,63,71,79,91,95,103,111,123,127,155,159,
%T A243115 167,175,191,199,207,219,223,231,239,251,255,283,287,303,319,327,347,
%U A243115 359,367,383,411,415,423,447,463,479,487,495,507,511,539,543,559,575
%N A243115 Starting values of the reduced Collatz function (A014682) where 2 to the power of the "dropping time" is greater than the starting value.
%C A243115 a(n) is the lowest positive starting value of the reduced Collatz function such that all starting values (>1) that are congruent to a(n) (mod 2^d) have the same dropping time (d). The dropping time here counts the (3x+1)/2 and the x/2 steps as listed in A126241. A number is included in this sequence if 2^A126241(a(n)) > a(n).
%C A243115 Starting values that produce new record dropping times as listed in A060412 are necessarily a subset of this sequence.
%C A243115 If at least one iteration is carried out before checking that the absolute iterated value has become less than or equal to the absolute starting value, then a(n) is the lowest positive starting value such that all starting values (positive, zero or negative) that are congruent to a(n) (mod 2^d) have the same dropping time (d). Defined like this, the sequence would start with 0, 1, 3, 7.
%C A243115 For k>0, A076227(k) is the number of terms between 2^k and 2^(k+1)-1. - _Ruud H.G. van Tol_, Dec 18 2022
%C A243115 All terms are congruent to 3 (mod 4) since any 1 (mod 4) has dropping time A126241(4k+1) = 2, for k>=1. - _Ruud H.G. van Tol_, Jan 11 2023
%e A243115 3 is in this sequence because the dropping time starting with 3 is A126241(3) = 4 and 2^4 > 3.
%o A243115 (PARI) is(t)= if(t<3||3!=t%4,0,my(x=t, d=0); until(x<=t, if(x%2, x=(x*3+1)/2, x/=2); d++); 2^d>t); \\ updated by _Ruud H.G. van Tol_, Jan 10 2023
%Y A243115 Cf. A014682, A060412, A076227, A126241, A177789, A239126.
%K A243115 nonn
%O A243115 1,1
%A A243115 _K. Spage_, Aug 20 2014
%E A243115 Offset 1 from _Ruud H.G. van Tol_, Jan 10 2023