The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A181351 Exchange 2 and 5 in the prime factorization of n. 2
1, 5, 3, 25, 2, 15, 7, 125, 9, 10, 11, 75, 13, 35, 6, 625, 17, 45, 19, 50, 21, 55, 23, 375, 4, 65, 27, 175, 29, 30, 31, 3125, 33, 85, 14, 225, 37, 95, 39, 250, 41, 105, 43, 275, 18, 115, 47, 1875, 49, 20, 51, 325, 53, 135, 22, 875, 57, 145, 59, 150, 61, 155, 63 (list; graph; refs; listen; history; text; internal format)
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
Cf. A064614.
Sequence in context: A146317 A168253 A357756 * A266385 A354091 A032532
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 12 15:57 EDT 2024. Contains 373333 sequences. (Running on oeis4.)