OFFSET
1,2
LINKS
FORMULA
EXAMPLE
n = 18: divisors of 18: 1 = '1', 2 = '10', 3 = '11', 6 = '110', 9 = '1001' and 18 = '10010': four of them are binary substrings of '10010', therefore a(18) = 4.
MATHEMATICA
a[n_] := DivisorSum[n, 1 &, StringContainsQ @@ IntegerString[{n, #}, 2] &]; Array[a, 100] (* Amiram Eldar, Jul 16 2022 *)
PROG
(Haskell)
import Data.List (isInfixOf)
a093640 n = length [d | d <- [1..n], mod n d == 0,
show (a007088 d) `isInfixOf` show (a007088 n)]
-- Reinhard Zumkeller, Jan 22 2012
(Python)
from sympy import divisors
def a(n):
s = bin(n)[2:]
return sum(1 for d in divisors(n, generator=True) if bin(d)[2:] in s)
print([a(n) for n in range(1, 102)]) # Michael S. Branicky, Jul 11 2022
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Reinhard Zumkeller, Apr 07 2004
STATUS
approved