login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A169737
a(1) = 100; for n>1, a(n) = a(n-1) + digitsum(a(n-1)).
0
100, 101, 103, 107, 115, 122, 127, 137, 148, 161, 169, 185, 199, 218, 229, 242, 250, 257, 271, 281, 292, 305, 313, 320, 325, 335, 346, 359, 376, 392, 406, 416, 427, 440, 448, 464, 478, 497, 517, 530, 538, 554, 568, 587, 607, 620, 628, 644, 658, 677, 697, 719, 736, 752
OFFSET
1,1
MATHEMATICA
NestList[#+Total[IntegerDigits[#]]&, 100, 60] (* Harvey P. Dale, Aug 23 2019 *)
CROSSREFS
Cf. A169732, A007618. First differences are A065075.
Sequence in context: A252480 A323142 A220401 * A070794 A090429 A248711
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, May 01 2010
STATUS
approved