OFFSET
1,2
COMMENTS
A self-inverse permutation of the natural numbers.
a(1) = 1, a(2) = 5, a(5) = 2, a(p) = p for primes p = 3 and p > 5 and a(u * v) = a(u) * a(v) for u, v > 0.
A permutation of the natural numbers: a(a(n)) = n for all n and a(n) = n if and only if n = 10^k * m for k >= 0 and m > 0 with GCD(m, 10) = 1. This is to (2,5) as A064614 is to (2,3).
LINKS
FORMULA
Dirichlet g.f.: zeta(s-1)*(2^s-2)*(5^s-5)/((2^s-5)*(5^s-2)). - Amiram Eldar, Jul 18 2023
EXAMPLE
a(15) = a(3*5) = a(3)*a(5) = 3*2 = 6.
a(16) = a(2^4) = a(2)^4 = 5^4 = 625.
MATHEMATICA
a[n_] := n * Times @@ ({5/2, 2/5}^IntegerExponent[n, {2, 5}]); Array[a, 100] (* Amiram Eldar, Jul 18 2023 *)
PROG
(PARI) a(n)=n*(5/2)^valuation(n, 2)*(2/5)^valuation(n, 5) \\ Charles R Greathouse IV, Dec 07 2011
CROSSREFS
KEYWORD
nonn,easy,mult
AUTHOR
Jonathan Vos Post, Jan 29 2011
EXTENSIONS
a(20) corrected by Charles R Greathouse IV, Dec 07 2011
STATUS
approved