OFFSET
1,2
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = n/A367513(n).
a(n) >= 1, with equality if and only if n is an exponentially evil number (A262675).
a(n) <= n, with equality if and only if n is an exponentially odious number (A270428).
Sum_{k=1..n} a(k) ~ c * n^2 / 2, where c = Product_{p prime} f(1/p) = 0.88585652437242918295..., and f(x) = (x+2)/(2*(x+1)) + (x/2) * Product_{k>=0} (1 - x^(2^k)).
MATHEMATICA
f[p_, e_] := p^(e*ThueMorse[e]); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]
PROG
(PARI) a(n) = {my(f = factor(n)); prod(i = 1, #f~, if(hammingweight(f[i, 2])%2, f[i, 1]^f[i, 2], 1)); }
(Python)
from math import prod
from sympy import factorint
def A367514(n): return prod(p**e for p, e in factorint(n).items() if e.bit_count()&1) # Chai Wah Wu, Nov 23 2023
CROSSREFS
KEYWORD
nonn,easy,mult
AUTHOR
Amiram Eldar, Nov 21 2023
STATUS
approved