OFFSET
1,2
COMMENTS
a(n) is the largest exponential divisor of n (cf. A322791) that is an exponentially odd number (A268335). - Amiram Eldar, Nov 17 2022
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..16384
Brahim Mittou, New properties of an arithmetic function, Mathematica Montisnigri, Vol LIII (2022).
FORMULA
a(n) = n / A331738(n).
Sum_{k=1..n} a(k) ~ c * n^2, where c = (1/2) * Product_{p prime} ((1-1/p) * Sum_{k>=1} p^(2^k - 1)/(p^(2^(k+1)-2) - 1)) = 0.3953728204... . - Amiram Eldar, Nov 17 2022
MATHEMATICA
f[p_, e_] := p^(e/2^IntegerExponent[e, 2]); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Nov 17 2022 *)
PROG
CROSSREFS
KEYWORD
nonn,mult
AUTHOR
Antti Karttunen, Feb 02 2020
STATUS
approved