Sequence: smallest number greater than previous term with exactly n divisors: Difference between revisions

Added Arturo implementation
m (→‎{{header|Phix}}: added limit of 32 results)
(Added Arturo implementation)
Line 224:
The first 15 terms of the sequence are: 1 2 4 6 16 18 64 66 100 112 1024 1035 4096 4288 4624
</pre>
 
=={{header|Arturo}}==
 
<lang rebol>i: new 0
next: new 1
MAX: 15
while [next =< MAX][
if next = size factors i [
prints ~"|i| "
inc 'next
]
inc 'i
]
print ""</lang>
 
{{out}}
 
<pre>1 2 4 6 16 18 64 66 100 112 1024 1035 4096 4288 4624</pre>
 
=={{header|AutoHotkey}}==
1,532

edits