OFFSET
3,1
COMMENTS
Will every term be between 28 and 31 inclusive?
REFERENCES
Jason Earls, Red Zen, Lulu Press, NY, 2006, pp. 145-146. ISBN: 978-1-4303-2017-3.
LINKS
Amiram Eldar, Table of n, a(n) for n = 3..10000
EXAMPLE
There are exactly 29 Harshad numbers between 1000 and 1100, so the first term is 29.
MATHEMATICA
a[n_] := Count[Range[10^n, 10^n + 100], _?(Divisible[#, Plus @@ IntegerDigits[#]] &)]; Array[a, 70, 3] (* Amiram Eldar, Jan 27 2021 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jason Earls, May 26 2007
STATUS
approved