OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
133 is in the sequence because it is a semiprime and it is divisible by the sum of its digits, 1+3+3 = 7.
MATHEMATICA
spQ[n_] := Plus @@ Last /@ FactorInteger@n == 2; Select[Range@7542, spQ@# && IntegerQ[ #/Plus @@ IntegerDigits@# ] &] (* Robert G. Wilson v, Jun 10 2006 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), May 20 2006
EXTENSIONS
More terms from Robert G. Wilson v, Jun 10 2006
STATUS
approved