%I #9 Mar 20 2022 04:13:53
%S 0,5,10,65,1110,6665,11111110,66666665,1111111111111110,
%T 6666666666666665,11111111111111111111111111111110,
%U 66666666666666666666666666666665,1111111111111111111111111111111111111111111111111111111111111110
%N a(0) = 0; a(n) is obtained by incrementing each digit of a(n-1) by 5.
%C In A061511-A061522, A061746-A061750 when the incremented digit exceeds 9 it is written as a 2-digit string. So 9+1 becomes the 2-digit string 10, etc.
%o (Python)
%o from itertools import accumulate, repeat
%o def f(n, _): return int("".join(str(int(d)+5) for d in str(n)))
%o def aupton(nn): return list(accumulate(repeat(0, nn+1), f))
%o print(aupton(12)) # _Michael S. Branicky_, Mar 19 2022
%K base,nonn
%O 0,2
%A _Amarnath Murthy_, May 08 2001
%E More terms from Larry Reeves (larryr(AT)acm.org), May 11 2001
%E a(3) and following corrected and formula removed by _Georg Fischer_, Mar 19 2022