OFFSET
1,2
COMMENTS
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
Number k = 40 is in sequence because number 9*40 + 1 = 361 is number with all divisors (1, 19, 361) with additive digital root = 1.
MATHEMATICA
adrQ[n_]:=NestWhile[Total[IntegerDigits[#]]&, n, #>9&]==1; Select[Range[ 0, 250], AllTrue[Divisors[9#+1], adrQ]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Aug 27 2020 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jaroslav Krizek, Apr 26 2012
EXTENSIONS
Corrected (230 inserted) by Harvey P. Dale, Aug 27 2020
STATUS
approved