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!)
A342815 Numbers of the form (2^(2*j + 6*k + 5) - 2^(2*j + 1) - 3)/9, with j,k >= 0. 1

%I #22 Aug 31 2021 16:48:01

%S 3,13,53,213,227,853,909,3413,3637,13653,14549,14563,54613,58197,

%T 58253,218453,232789,233013,873813,931157,932053,932067,3495253,

%U 3724629,3728213,3728269,13981013,14898517,14912853,14913077,55924053,59594069,59651413,59652309

%N Numbers of the form (2^(2*j + 6*k + 5) - 2^(2*j + 1) - 3)/9, with j,k >= 0.

%C Sequence is a subsequence of A198584. When any term is iterated using the Collatz function, the last odd integer in the trajectory before 1 is of the form (4^(3*m + 2) - 1)/3.

%H Satya Das, <a href="https://www.researchgate.net/publication/354253993_3X1_PROBLEM_A_CONTINUOUS_EXTENSION_OF_THE_SPEEDED_UP_COLLATZ_MAP">Extension of speeded up Collatz map to the real line</a>

%t Take[Sort[Flatten[Table[(2^(2n1+6n2+5) - 2^(2n1+1) - 3)/9, {n1, 0, 20}, {n2, 0, 20}]]], 50]

%o (Python)

%o seq=[]

%o for n1 in range(20):

%o for n2 in range(20):

%o n=(2**(2*n1+6*n2+5) - 2**(2*n1+1) - 3)/9

%o seq.append(n)

%o seq.sort()

%o print(seq[0:50])

%Y Union with A342816 gives A198584.

%K nonn,easy

%O 1,1

%A _Satya Das_, Mar 22 2021

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 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)