OFFSET
1,2
COMMENTS
Conjecture: sequence is injective (all terms of this sequence occur only once).
The subsequence of fixed points consists of 1 together with the primes (A008578). - Bernard Schott, Oct 26 2021
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..2000 (terms 1..100 from Jaroslav Krizek)
FORMULA
a(p) = p for prime p.
From Bernard Schott, Oct 29 2021: (Start)
For p prime and k >= 0, a(p^k) = p^A000292(k).
For n = p*q, p < q primes (A006881), a(n) = p*n^3. (End)
EXAMPLE
The divisors of 6 are 1, 2, 3, 6. a(n) = 1*(1*2)*(1*2*3)*(1*2*3*6) = 1*2*6*36 = 432.
MATHEMATICA
a[n_] := Module[{d = Divisors[n], nd}, nd = Length[d]; Product[d[[i]]^(nd - i + 1), {i, 1, nd}]]; Array[a, 35] (* Amiram Eldar, Oct 23 2021 *)
PROG
(PARI) a(n) = my(d=divisors(n)); prod(k=1, #d, vecprod(select(x->(x<=d[k]), d))); \\ Michel Marcus, Oct 23 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Dec 22 2012
EXTENSIONS
a(24) corrected by Seiichi Manyama, Oct 23 2021
STATUS
approved