OFFSET
1,1
COMMENTS
Also column 24 of A059897.
A self-inverse permutation of the positive integers with no fixed points; a composition of A073675, A120229 and A120230.
The permutation swaps pairs of integers whose ratio is 1:24, 1:6, 3:8 or 2:3, these ratios corresponding to the factorizations 1*24 = 2*12 = 3*8 = 4*6 = 24. Row 24 is the first row of A059897 to exhibit more than 2 such ratios.
LINKS
FORMULA
PROG
(PARI) T(n, k) = {if (n==1, return (k)); if (k==1, return (n)); my(fn=factor(n), fk=factor(k)); vp = setunion(fn[, 1]~, fk[, 1]~); prod(i=1, #vp, vp[i]^(bitxor(valuation(n, vp[i]), valuation(k, vp[i])))); }
a(n) = T(n, 24); \\ Michel Marcus, Apr 23 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Munn, Apr 01 2019
STATUS
approved