I think the Collatz Conjecture is already well-known. But what if we invert the rules?
Start with an integer n>= 1.
Repeat the following steps:
If n is even, multiply it by 3 and add 1.
If n is odd, subtract 1 and divide it by 2.
Stop when it reaches 0
Print the iterated numbers.
Test cases:
1 => 1, 0
2 => 2, 7, 3, 1, 0
3 => 3, 1, 0
10 => 10, 31, 15, 7, 3...
14 => 14, 43, 21, 10, ...
Rules:
This sequence does not work for a lot of numbers because it enters in an infinite loop. You do not need to handle those cases. Only printing the test cases above is enough.
I suggested to subtract 1 and divide by two to give a valid integer to continue, but it is not required to be computed that way. You may divide by 2 and cast to integer or whatever other methods that will give the expected output.
You need to print the initial input as well.
The output does not need to be formatted as the test cases. It was just a suggestion. However, the iterated order must be respected.
The smallest code wins.
47 Answers 47
Perl 6, 30 bytes
{$_,{$_%2??$_+>1!!$_*3+1}...0}
Anonymous code block that returns a sequence.
Explanation:
{$_,{$_%2??$_+>1!!$_*3+1}...0}
{ } # Anonymous code block
, ... # Define a sequence
$_ # That starts with the given value
{ } # With each element being
$_%2?? !! # Is the previous element odd?
$_+>1 # Return the previous element bitshifted right by 1
$_*3+1 # Else the previous element multiplied by 3 plus 1
0 # Until the element is 0
Wolfram Language (Mathematica), 35 bytes
0<Echo@#&�[3#+1-(5#+3)/2#~Mod~2]&
0<Echo@# && ...& is short-circuit evaluation: it prints the input #, checks if it's positive, and if so, evaluates .... In this case, ... is #0[3#+1-(5#+3)/2#~Mod~2]; since #0 (the zeroth slot) is the function itself, this is a recursive call on 3#+1-(5#+3)/2#~Mod~2, which simplifies to 3#+1 when # is even, and (#-1)/2 when # is odd.
Emojicode 0.5, 141 bytes
🐖🎅🏿🍇🍮a🐕😀🔡a 10🔁▶️a 0🍇🍊😛🚮a 2 1🍇🍮a➗a 2🍉🍓🍇🍮a➕✖️a 3 1🍉😀🔡a 10🍉🍉
🐖🎅🏿🍇
🍮a🐕 👴 input integer variable 'a'
😀🔡a 10 👴 print input int
🔁▶️a 0🍇 👴 loop while number isn’t 0
🍊😛🚮a 2 1🍇 👴 if number is odd
🍮a➗a 2 👴 divide number by 2
🍉
🍓🍇 👴 else
🍮a➕✖️a 3 1 👴 multiply by 3 and add 1
🍉
😀🔡a 10 👴 print iteration
🍉🍉
05AB1E, (削除) 15 (削除ここまで) 14 bytes
[Ð=_#Èi3*>ë<2÷
-1 byte thanks to @MagicOctopusUrn.
Explanation:
[ # Start an infinite loop
Ð # Duplicate the top value on the stack three times
# (Which will be the (implicit) input in the first iteration)
= # Output it with trailing newline (without popping the value)
_# # If it's exactly 0: stop the infinite loop
Èi # If it's even:
3* # Multiply by 3
> # And add 1
ë # Else:
< # Subtract 1
2÷ # And integer-divide by 2
-
1\$\begingroup\$
[Ð=_#Èi3*>ë<2÷with=instead ofD,. \$\endgroup\$Magic Octopus Urn– Magic Octopus Urn2018年11月07日 04:20:00 +00:00Commented Nov 7, 2018 at 4:20 -
\$\begingroup\$ @MagicOctopusUrn Ah, that was pretty bad to forgot.. Thanks! :) \$\endgroup\$Kevin Cruijssen– Kevin Cruijssen2018年11月07日 07:37:19 +00:00Commented Nov 7, 2018 at 7:37
Nibbles, 7.5 bytes
`.$?`%$~@+*3@~
`. Iterate while unique
$ starting at input
? if
`% modulo (also save the quotient)
$ the number
~ 2
@ then the quotient
+ else add
*3 multiply by 3
@ the number
~ 1
Add++, (削除) 38 (削除ここまで) (削除) 35 (削除ここまで) 33 bytes
D,f,@:,d3*1+2ドル/iA2%D
+?
O
Wx,$f>x
How it works
First, we begin by defining a function \$f(x)\$, that takes a single argument, performs the inverted Collatz operation on \$x\$ then outputs the result. That is,
$$f(x) = \begin{cases} x \: \text{is even}, & 3x+1 \\ x \: \text{is odd}, & \lfloor\frac{x}{2}\rfloor \end{cases}$$
When in function mode, Add++ uses a stack memory model, otherwise variables are used. When calculating \$f(x)\$, the stack initially looks like \$S = [x]\$.
We then duplicate this value (d), to yield \$S = [x, x]\$. We then yield the first possible option, \3ドルx + 1\$ (3*1+), swap the top two values, then calculate \$\lfloor\frac{x}{2}\rfloor\$, leaving \$S = [3x+1, \lfloor\frac{x}{2}\rfloor]\$.
Next, we push \$x\$ to \$S\$, and calculate the bit of \$x\$ i.e. \$x \: \% \: 2\$, where \$a \: \% \: b\$ denotes the remainder when dividing \$a\$ by \$b\$. This leaves us with \$S = [3x+1, \lfloor\frac{x}{2}\rfloor, (x \: \% \: 2)]\$. Finally, we use D to select the element at the index specified by \$(x \: \% \: 2)\$. If that's \0ドル\$, we return the first element i.e. \3ドルx+1\$, otherwise we return the second element, \$\lfloor\frac{x}{2}\rfloor\$.
That completes the definition of \$f(x)\$, however, we haven't yet put it into practice. The next three lines have switched from function mode into vanilla mode, where we operate on variables. To be more precise, in this program, we only operate on one variable, the active variable, represented by the letter x. However, x can be omitted from commands where it is obviously the other argument.
For example, +? is identical to x+?, and assigns the input to x, but as x is the active variable, it can be omitted. Next, we output x, then entire the while loop, which loops for as long as \$x \neq 0\$. The loop is very simple, consisting of a single statement: $f>x. All this does is run \$f(x)\$, then assign that to x, updating x on each iteration of the loop.
-
\$\begingroup\$ Just to understand: Is the break line part of the code? Or is it just for better explanation? I don't really know this language. \$\endgroup\$Eduardo Hoefel– Eduardo Hoefel2018年11月04日 21:38:04 +00:00Commented Nov 4, 2018 at 21:38
-
\$\begingroup\$ @EduardoHoefel Break line? \$\endgroup\$2018年11月04日 21:38:47 +00:00Commented Nov 4, 2018 at 21:38
-
\$\begingroup\$ @cairdcoinheringaahing The newline characters, presumably. \$\endgroup\$lynn– lynn2018年11月04日 22:13:34 +00:00Commented Nov 4, 2018 at 22:13
Python 2, (削除) 54 (削除ここまで) (削除) 52 (削除ここまで) 44 bytes
n=input()
while n:print n;n=(n*3+1,n/2)[n%2]
-2 bytes thanks to Mr. Xcoder
There must certainly be a faster way. Oddly, when I tried a lambda it was the same bytecount. I'm probably hallucinating.
-
\$\begingroup\$ -2 bytes \$\endgroup\$Mr. Xcoder– Mr. Xcoder2018年11月04日 21:48:36 +00:00Commented Nov 4, 2018 at 21:48
-
1
-
\$\begingroup\$ Though the
0is now optional, so it's shorter to get rid of the secondprint\$\endgroup\$Jo King– Jo King2018年11月05日 02:43:33 +00:00Commented Nov 5, 2018 at 2:43 -
\$\begingroup\$ Indeed, now you can do it in 44 \$\endgroup\$Mr. Xcoder– Mr. Xcoder2018年11月05日 11:16:48 +00:00Commented Nov 5, 2018 at 11:16
-
\$\begingroup\$ @Mr.Xcoder Cool, I was asleep lol \$\endgroup\$Quintec– Quintec2018年11月05日 13:28:18 +00:00Commented Nov 5, 2018 at 13:28
Haskell, (削除) 76 69 61 (削除ここまで) 56 bytes
I feel like this is way too long. Here l produces an infinite list of the inverse-collatz sequence, and the anonymous function at the first line just cuts it off at the right place.
Thanks for -5 bytes @ØrjanJohansen!
fst.span(>0).l
l r=r:[last3ドル*k+1:[div k 2|odd k]|k<-l r]
-
\$\begingroup\$ There are no negative numbers, so
(>0)should suffice. Also there's anoddfunction. \$\endgroup\$Ørjan Johansen– Ørjan Johansen2018年11月05日 18:25:36 +00:00Commented Nov 5, 2018 at 18:25
Rust, (削除) 65 (削除ここまで) 64 bytes
|mut n|{while n>0{print!("{} ",n);n=if n&1>0{n>>1}else{n*3+1};}}
-
2\$\begingroup\$ Your permalink doesn't seem to be working. The program just prints the input and halts. \$\endgroup\$Dennis– Dennis2018年11月09日 03:30:44 +00:00Commented Nov 9, 2018 at 3:30
-
\$\begingroup\$ Yes, you're right. I'll ask "them" to pull the latest version :P \$\endgroup\$Eduardo Hoefel– Eduardo Hoefel2018年11月09日 15:37:48 +00:00Commented Nov 9, 2018 at 15:37
-
\$\begingroup\$ I've added JAEL to the list of golfing languages. Please let me know if I got any information wrong :-) \$\endgroup\$ETHproductions– ETHproductions2018年11月09日 19:39:05 +00:00Commented Nov 9, 2018 at 19:39
-
\$\begingroup\$ @ETHproductions Thank you very much :D I think I could say that the specialty is the utility package that helps the programmer to compress the code, but that's just me trying to merchandise it. \$\endgroup\$Eduardo Hoefel– Eduardo Hoefel2018年11月12日 00:36:44 +00:00Commented Nov 12, 2018 at 0:36
MathGolf, 12 bytes
{o_\¿1⁄2É3*)}∟
Explanation
{ Start block of arbitrary length
o Output the number
_ Duplicate
\ Modulo 2
¿ If-else with the next two blocks. Implicit blocks consist of 1 operator
1⁄2 Halve the number to integer (effectively subtracting 1 before)
É Start block of 3 bytes
3*) Multiply by 3 and add 1
}∟ End block and make it do-while-true
-
\$\begingroup\$ I've added MathGolf to the list of golfing langs--feel free to correct me if I got anything wrong :-) \$\endgroup\$ETHproductions– ETHproductions2018年11月12日 20:28:36 +00:00Commented Nov 12, 2018 at 20:28
-
\$\begingroup\$ Thanks for adding it! Everything looks right to me. \$\endgroup\$maxb– maxb2018年11月12日 22:31:27 +00:00Commented Nov 12, 2018 at 22:31
x86 machine code, 39 bytes
00000000: 9150 6800 0000 00e8 fcff ffff 5958 a901 .Ph.........YX..
00000010: 0000 0074 04d1 e8eb 066a 035a f7e2 4009 ...t.....j.Z..@.
00000020: c075 dec3 2564 20 .u..%d
Assembly (NASM syntax):
section .text
global func
extern printf
func: ;the function uses fastcall conventions
xchg eax, ecx ;load function arg into eax
loop:
push eax
push fmt
call printf ;print eax
pop ecx
pop eax
test eax, 1 ;if even zf=1
jz even ;if eax is even jmp to even
odd: ;eax=eax/2
shr eax, 1
jmp skip
even: ;eax=eax*3+1
push 3
pop edx
mul edx
inc eax
skip:
or eax, eax
jne loop ;if eax!=0, keep looping
ret ;return eax
section .data
fmt db '%d '
Thunno d, \$ 19 \log_{256}(96) \approx \$ 15.64 bytes
[zuZK!)2%?1-2,(3*1+
(No ATO link since this needs v1.2.2 and ATO is on v1.2.1)
Explanation
[zuZK!)2%?1-2,(3*1+ # Implicit input
[ # Loop forever:
zu # Quadruplicate the value on the top of the stack
ZK # Print with a trailing newline
!) # If it's 0, break
2%? # If it's odd:
1- # Subtract one
2, # And integer divide by two
( # Else:
3* # Multiply by three
1+ # And add one
# This value is on the top of the stack for the next iteration
# The d flag stops the implicit output at the end
Screenshot
-
1\$\begingroup\$ Both order are 30 \$\endgroup\$l4m2– l4m22023年02月05日 13:58:09 +00:00Commented Feb 5, 2023 at 13:58
Vyxal, (削除) 15 (削除ここまで) 12 bytes
Thanks to @Steffan i learned more about Vyxal!
{...:|:∷[2ḭ|T›
Naive approach for beginners:
{...:Ṡ|:2[3*›|‹2/
-
\$\begingroup\$ 12 bytes or alternative \$\endgroup\$naffetS– naffetS2023年02月11日 03:45:08 +00:00Commented Feb 11, 2023 at 3:45
Pyt, 15 bytes
`ĐĐ2%?ŕ2:ŕ3*+;ł
` ł do... while top of stack is not 0; implicit print upon exiting loop
ĐĐ duplicate top of stack twice (implicit input if empty)
2% modulo 2
?ŕ2 if top of stack is truthy, then pop from stack and divide next by 2
:ŕ3*+ else: pop from stack and multiply next term by 3 and add 1
; end if-then-else statement
Thunno 2, 12 bytes
(×ばつ+:−1⁄2
Explanation
(×ばつ+:−1⁄2 # implicit input
( # while loop:
ß # (condition) print the number without popping
# and test if it's truthy (non-zero)
;D # (body) duplicate the current integer
E? # if it's even:
×ばつ # multiply it by 3
+ # and then add one
: # otherwise:
− # decrement it
1⁄2 # and then halve it
Nekomata, 11 bytes
ɪ{Z:←1⁄23ドル*→I
ɪ{Z:←1⁄23ドル*→I
ɪ{ Iterate until failure:
Z Check if nonzero
: Duplicate
← Decrement
1⁄2 Halve; fails if odd
$ Swap
3* Multiply by 3
→ Increment
I Choose the first value that doesn't fail
Acc!!, 76 bytes
Count i while N {
i
}
Count i while _ {
Write 49)*(_
Write 9
(_*3+1)/6^(_%2)
Intput and Output are both in unary
Vyxal 3, 11 bytes
э:ḃ[v1⁄2|Tꜝ}L·
Explanation
э:ḃ[v1⁄2|Tꜝ}L·
э # Convert the next three elements to a lambda function:
: # Duplicate
ḃ # Parity (1 if odd, 0 if even)
[ | } # Ternary expression based on that value:
v1⁄2 # If truthy (1/odd), decrement and halve
Tꜝ # If falsey (0/even), triple and increment
L· # Apply that function to the input until it repeats a value, and return
# the list of unique values visited
💎
Created with the help of Luminespire.
Alternate 11 bytes, port of Mukundan314's Acc!! answer:
λ:Tꜝ6←ḃ*Ṡ}L·
Common Lisp, 79 bytes
(defun x(n)(cons n(if(= n 0)nil(if(=(mod n 2)0)(x(+(* n 3)1))(x(/(- n 1)2))))))
PowerShell, (削除) 53 (削除ここまで) 52 bytes
param($i)for(;$i){$i;$i=(($i*3+1),($i-shr1))[$i%2]}0
Edit:
-1 byte thanks to @mazzy
-
\$\begingroup\$ you can try
for(;$i)insteadwhile($i)\$\endgroup\$mazzy– mazzy2018年11月05日 12:19:41 +00:00Commented Nov 5, 2018 at 12:19
R, (削除) 66 (削除ここまで) 61 bytes
-5 bytes thanks to Robert S. in consolidating ifelse into if and removing brackets, and x!=0 to x>0
print(x<-scan());while(x>0)print(x<-`if`(x%%2,(x-1)/2,x*3+1))
instead of
print(x<-scan());while(x!=0){print(x<-ifelse(x%%2,(x-1)/2,x*3+1))}
-
1
Factor + math.extras, 56 bytes
[ [ .s dup odd? [ 1 - 2/ ] [ 3 * 1 + ] if ] until-zero ]
Explanation:
[ ... ]A quotation. An anonymous function that lives on the data stack until called or used by a combinator.- Assuming a data stack with
3on top when this quotation is called... [ .s dup odd? [ 1 - 2/ ] [ 3 * 1 + ] if ]Push a quotation to the data stack to be used later byuntil-zero. Stack:3 [ .s dup odd? [ 1 - 2/ ] [ 3 * 1 + ] if ]until-zeroCall a quotation repeatedly until its output is0. Stack:3.sNon-destructively print the data stack. Stack:3dupDuplicate TOS (top-of-stack). Stack:3 3odd?Returntif input is odd, elsef. Stack:3 t[ 1 - 2/ ]Push a quotation to be used later byif. Stack:3 t [ 1 - 2/ ][ 3 * 1 + ]Push another quotation to be used later byif. Stack:3 t [ 1 - 2/ ] [ 3 * 1 + ]ifTakes a boolean and two quotations from the data stack. Calls the first quotation if the boolean ist, otherwise calls the second. (Now inside the first quotation...) Stack:31Push1to the data stack. Stack:3 1-Subtract TOS from NOS (next on stack). Stack:22/Integer divide by 2. Like doingx>>1in many languages. Stack:1- Now
until-zerolooks at the data stack and sees TOS is not0, so calls its input quotation...
C (gcc), 75 bytes
#include<stdio.h>
int g(int x){printf("%d ",x);x?g(x=x%2?(x-1)/2:3*x+1):0;}
-
\$\begingroup\$ Building on @c-- 42 bytes \$\endgroup\$ceilingcat– ceilingcat2022年08月22日 04:16:39 +00:00Commented Aug 22, 2022 at 4:16
0at the end? \$\endgroup\$