OFFSET
1,2
COMMENTS
In terms of integers: apply A265398 as many times as necessary to n, until it gets 3-smooth, one of the terms of A003586.
Completely multiplicative with a(2) = 2, a(3) = 3, a(p) = a(A265398(p)) for p > 3. - Andrew Howroyd & Antti Karttunen, Aug 04 2018
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..60
FORMULA
MATHEMATICA
f[p_, e_] := If[p < 5, p, a[NextPrime[p, -1] * NextPrime[p, -2]]]^e; a[1] = 1; a[n_] := a[n] = Times @@ f @@@ FactorInteger[n]; Array[a, 40] (* Amiram Eldar, Sep 07 2023 *)
PROG
CROSSREFS
KEYWORD
nonn,easy,mult
AUTHOR
Antti Karttunen, Dec 15 2015
EXTENSIONS
Keyword mult added by Antti Karttunen, Aug 04 2018
STATUS
approved