Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Challenges

Post History

71%
+3 −0
Challenges Juggler sequences

APL (Dyalog Unicode), 15 bytesSBCS With many thanks to Marshall Lochbaum and dzaima for their help debugging and golfing this answer {⍵∪⌊⍵*2|⍵+.5}⍣≡ {⍵∪⌊⍵*2|⍵+.5}⍣≡ ⍝ ⍵ is our input of eith...

posted 3y ago by SherlockSage‭

Answer
#1: Initial revision by user avatar SherlockSage‭ · 2021-05-18T19:39:19Z (almost 3 years ago)
# [APL (Dyalog Unicode)], 15 bytes<sup>[SBCS](https://github.com/mlochbaum/BQN/blob/master/commentary/sbcs.bqn)</sup>

With many thanks to Marshall Lochbaum and dzaima for their help debugging and golfing this answer

<!-- language-all: lang-apl -->

    {⍵∪⌊⍵*2|⍵+.5}⍣≡

```
{⍵∪⌊⍵*2|⍵+.5}⍣≡  ⍝ ⍵ is our input of either n or our intermediate results
{            }⍣≡  ⍝ run until we reach a fixed point (in this case, 1)
         ⍵+.5     ⍝ ⍵ plus one half
       2|         ⍝ mod 2 gives us 0.5 if our ⍵ was even, else 1.5
    ⍵*           ⍝ ⍵ to the power of the above exponent
   ⌊              ⍝ floor
 ⍵∪              ⍝ union of the answer with the previous results
                  ⍝ The set union will either remove an extra one, 
                  ⍝ or if we find a cycle that disproves the conjecture,
                  ⍝ will remove the extra members of the cycle
```

[Try it online!][TIO-kouflbyf]

[APL (Dyalog Unicode)]: https://www.dyalog.com/
[TIO-kouflbyf]: https://tio.run/##SyzI0U2pTMzJT///P@1R24TqR71bH3WsetTTBWRoGdUASW0909pHvYsfdS78/6hvKlBNmoKh5X8A "APL (Dyalog Unicode) – Try It Online"