A182363 a(n+1) = a(n) + floor(a(n)/10) with a(0) = 10.
10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 33, 36, 39, 42, 46, 50, 55, 60, 66, 72, 79, 86, 94, 103, 113, 124, 136, 149, 163, 179, 196, 215, 236, 259, 284, 312, 343, 377, 414, 455, 500, 550, 605, 665, 731, 804, 884, 972, 1069, 1175, 1292
Offset: 0
Keywords
Links
- Paolo Xausa, Table of n, a(n) for n = 0..5000
Programs
-
Mathematica
NestList[# + Floor[#/10] &, 10, 100] (* Paolo Xausa, Dec 22 2024 *)
-
Python
a=10 for i in range(55): print(a, end=', ') a += a//10