Question 408290
We could define a recursive sequence:


{{{a[n] = 10a[n-1] + n}}} where {{{a[1] = 1}}}.


Basically what this means is, take the n-1'th term, multiply it by 10, and then add n.