OFFSET
1,3
COMMENTS
Analogous to A093653 with product instead of sum.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
a(6) = 4 since the divisors of 6 are {1, 2, 3, 6}, and in binary representation {1, 10, 11, 110}. The number of 1's are {1, 1, 2, 2} and their product is 1*1*2*2 = 4.
MATHEMATICA
a[n_] := Times @@ (DigitCount[#, 2, 1] & /@ Divisors[n]); Array[a, 100]
PROG
(PARI) a(n) = vecprod(apply(hammingweight, divisors(n))); \\ Michel Marcus, Dec 08 2020
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Amiram Eldar, Dec 08 2020
STATUS
approved