OFFSET
1,1
COMMENTS
Prime numbers are excluded since they trivially satisfy the condition.
Multiplicity of the prime factors is ignored.
Among the first 10000 terms, the 182 which are not prime powers are of the form 2^h * 5^k. - Giovanni Resta, May 29 2017
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..10000
MATHEMATICA
Select[Range[6400], CompositeQ[#] && Mod[#, FromDigits@ Flatten[ IntegerDigits /@ First /@ FactorInteger@#]] == 0 &] (* Giovanni Resta, May 29 2017 *)
PROG
(PARI) for(n=2, 9999, isprime(n)||n%A084317(n)||print1(n", "))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
M. F. Hasler, Oct 21 2014
STATUS
approved