A036232 a(n+1) = a(n) + sum of digits of a(n) starting with 211.
211, 215, 223, 230, 235, 245, 256, 269, 286, 302, 307, 317, 328, 341, 349, 365, 379, 398, 418, 431, 439, 455, 469, 488, 508, 521, 529, 545, 559, 578, 598, 620, 628, 644, 658, 677, 697, 719, 736, 752, 766, 785, 805, 818, 835, 851, 865, 884, 904, 917, 934
Offset: 1
Programs
-
Mathematica
NestList[#+Total[IntegerDigits[#]]&,211,50] (* Harvey P. Dale, Jul 16 2020 *)
Comments