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!)
A187108 Odd numbers not in the trajectory of a smaller number under the Collatz (3x+1) iteration. 1
1, 3, 7, 9, 15, 19, 21, 25, 27, 33, 37, 39, 43, 45, 51, 55, 57, 63, 69, 73, 75, 79, 81, 87, 93, 97, 99, 105, 109, 111, 115, 117, 123, 127, 129, 133, 135, 141, 145, 147, 151, 153, 159, 163, 165, 169, 171, 177, 181, 183, 187, 189, 195, 199, 201, 207, 213, 217 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
These are the odd numbers in A061641, which gives a more detailed explanation. - T. D. Noe, Mar 05 2011
LINKS
PROG
(AS3)
var a:Array=new Array();
var i:int;
var n:int=0;
var ni:int;
var s:String='';
for (i=0; i<50; i++){
while(a[n]!=undefined) n++;
s+=String(2*n+1)+', ';
a[n]=1;
ni=2*n+1;
while(ni>=2*n+1&&ni>1){
ni=3*ni+1;
while(ni%2==0)ni/=2;
a[(ni-1)/2]=1;
}
}
trace(s);
CROSSREFS
Cf. A061641.
Sequence in context: A032424 A280861 A287264 * A026175 A026139 A328012
KEYWORD
nonn
AUTHOR
Jimin Park, Mar 05 2011
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 16 14:17 EDT 2024. Contains 371740 sequences. (Running on oeis4.)