A061749 a(0) = 1; a(n) is obtained by incrementing each digit of a(n-1) by 9.
1, 10, 109, 10918, 109181017, 1091810171091016, 1091810171091016109181091015, 1091810171091016109181091015109181017109181091014
Offset: 0
Programs
-
PARI
A061749(n=1, a=1, m=9)={for(n=1, n, a=eval(concat(apply(t->Str(t+m), digits(a))))); a} \\ If only the 2nd argument is given, then the operation is applied once to that argument. - M. F. Hasler, Jun 24 2016
Extensions
More terms from Larry Reeves (larryr(AT)acm.org), May 11 2001
Comments