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!)
A088976 Breadth-first traversal of the Collatz tree, with the even child of each node traversed prior to its odd child. If the Collatz 3n+1 conjecture is true, this is a permutation of all positive integers. 1

%I #13 Jul 21 2021 09:06:14

%S 1,2,4,8,16,32,5,64,10,128,21,20,3,256,42,40,6,512,85,84,80,13,12,

%T 1024,170,168,160,26,24,2048,341,340,336,320,53,52,48,4096,682,680,

%U 113,672,640,106,104,17,96,8192,1365,1364,227,1360,226,1344,1280,213,212,35,208

%N Breadth-first traversal of the Collatz tree, with the even child of each node traversed prior to its odd child. If the Collatz 3n+1 conjecture is true, this is a permutation of all positive integers.

%H T. D. Noe, <a href="/A088976/b088976.txt">Table of n, a(n) for n = 0..3517</a>

%o (Python)

%o def A088976():

%o yield 1

%o for x in A088976():

%o yield 2*x

%o if x > 4 and x % 6 == 4:

%o yield (x - 1)//3

%o a = A088976(); print([next(a) for _ in range(100)])

%Y Cf. A127824 (terms at the same depth are sorted).

%K easy,nonn

%O 0,2

%A _David Eppstein_, Oct 31 2003

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