OFFSET
1,1
LINKS
Wikipedia, Table of divisors
EXAMPLE
52 is in the sequence since it shares at least one digit with 26, its largest proper divisor. Both numbers share the digit 2.
MATHEMATICA
Select[Range[2, 150], Length[Intersection[IntegerDigits[#], IntegerDigits[#/FactorInteger[ #][[1, 1]]]]] > 0 &] (* Amiram Eldar, Oct 30 2022 *)
PROG
(PARI) isok(m) = (m>1) && #setintersect(Set(digits(m)), Set(digits(m/factor(m)[1, 1]))); \\ Michel Marcus, Oct 30 2022
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Wesley Ivan Hurt, Oct 29 2022
STATUS
approved