Module:Collatz sequence Generator
Appearance
--{{#invoke:Collatz sequence Generator|collatz|<positive integer>}}
--this module generates the collatz sequence
local p = {}
function p.collatz(frame)
local n = tonumber(frame.args[1]) -- Get the input number
if not n or n < 1 then
return "Please provide a positive integer."
end
-- Get the bolding parameters (if "yes", bold even or odd numbers)
local oddBold = frame.args['odd-bold'] == "yes"
local evenBold = frame.args['even-bold'] == "yes"
local sequence = {}
-- Helper function to handle bolding
local function maybe_bold(num)
if num % 2 == 0 and evenBold then
return "'''" .. num .. "'''"
elseif num % 2 ~= 0 and oddBold then
return "'''" .. num .. "'''"
else
return tostring(num)
end
end
-- Add the first (starting) number to the sequence
table.insert(sequence, maybe_bold(n))
-- Loop through the Collatz sequence
while n > 1 do
if n % 2 == 0 then
n = n / 2
else
n = 3 * n + 1
end
table.insert(sequence, maybe_bold(n)) -- Add each new number without arrows
end
return table.concat(sequence, ", ") -- Return the formatted sequence with commas
end
return p