OFFSET
1,2
COMMENTS
a(n) is the number of divisors d of n such that when the binary expansion of d is converted to a (0,1)-polynomial (e.g., 13=1101[2] encodes X^3 + X^2 + 1), that polynomial is a divisor of the (0,1)-polynomial similarly converted from n, when the polynomial division is done over field GF(2).
LINKS
EXAMPLE
PROG
(PARI) A325560(n) = { my(p = Pol(binary(n))*Mod(1, 2)); sumdiv(n, d, my(q = Pol(binary(d))*Mod(1, 2)); !(p%q)); };
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, May 11 2019
STATUS
approved