OFFSET
1,10
LINKS
Dominic McCarty, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = round(n/sumdigit(n)) where "round" is the rounded integer part of the division and "sumdigit" is the sum of the digits of the number.
EXAMPLE
a(15) = round(15/(1+5)) = round(2.5) = 3.
a(17) = round(17/(1+7)) = round(2.125) = 2.
a(62) = round(62/(6+2)) = round(7.75) = 8.
MATHEMATICA
Table[Floor[n/Total[IntegerDigits[n]]+1/2], {n, 120}] (* Harvey P. Dale, Nov 26 2016 *)
CROSSREFS
KEYWORD
easy,nonn,base
AUTHOR
Paolo P. Lava, May 06 2004
EXTENSIONS
Corrected and extended by Harvey P. Dale, Nov 26 2016
Offset changed to 1 by Georg Fischer, Jun 14 2024
STATUS
approved