OFFSET
1,2
REFERENCES
David Wells, The Penguin Dictionary of Curious and Interesting Numbers. Penguin Books, NY, 1986, p. 171.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Richard K. Guy, The Second Strong Law of Small Numbers, Math. Mag, Vol. 63, No. 1 (1990), pp. 3-20.
EXAMPLE
629 is a term of the sequence because it is odd and divisible by 17 (= 6+2+9).
MAPLE
s:=proc(n) local N:N:=convert(n, base, 10):sum(N[j], j=1..nops(N)) end:p:=proc(n) if floor(n/s(n))=n/s(n) then n else fi end: seq(p(2*n-1), n=1..530);
MATHEMATICA
Select[Range[1, 999, 2], Divisible[#, Total[IntegerDigits[#]]]&] (* Harvey P. Dale, Aug 22 2011 *)
PROG
(PARI) isok(n) = (n%2) && !(n % sumdigits(n)); \\ Michel Marcus, Sep 19 2017
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Emeric Deutsch, Dec 16 2004
EXTENSIONS
Edited by Charles R Greathouse IV, Aug 03 2010
STATUS
approved