OFFSET
1,10
COMMENTS
a(n)=10234 is particularly frequent, it is obtained by the following integers: 102340, 133042, 153510, 184212, 204680, 214914, 225148, 235382, 245616, 255850, 266084, 276318, 286552, 327488, 347956, 378658, 388892,.... Carmine Suriano, May 04 2013
LINKS
Carmine Suriano, Table of n, a(n) for n = 1..10000
FORMULA
EXAMPLE
12 is the 11th term of A005349, hence a(11) = 12/(1+2) = 4.
MATHEMATICA
Select[# / DigitSum[#] & /@ Range[300], IntegerQ] (* Amiram Eldar, May 26 2024 *)
PROG
(PARI) lista(nn) = {for (i = 1, nn, if (i % sumdigits(i) == 0, print1(i/sumdigits(i), ", ")); ); } \\ Michel Marcus, Oct 09 2013
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Amarnath Murthy, Dec 20 2001
EXTENSIONS
Corrected, extended and edited by Zak Seidov, Oct 26 2005
STATUS
approved