OFFSET
0,3
COMMENTS
This sequence is the additive counterpart of the digit factorials which, unlike the digit factorials, increases at a faster pace. A061511 and its relatives bear similarities to this sequence, but each of these increase at varying rates depending on the chosen constant. However, unlike these sequences, the constant increases by 1 each time. If digits within a(n-1) exceed 9 when one adds a constant, we ignore carrying and replace the digit with its correct value, thus 9+1 = 10. a(15) has 1024 digits.
EXAMPLE
a(5) = {1+5, 0+5} = 65, where {x, y} is the concatenation of x and y.
a(6) = {6+6, 5+6} = 1211.
MAPLE
a:= proc(n) option remember; `if`(n=0, 0, (l-> parse(cat(
seq(n+l[-i], i=1..nops(l)))))(convert(a(n-1), base, 10)))
end:
seq(a(n), n=0..12); # Alois P. Heinz, Nov 15 2020
MATHEMATICA
Nest[Append[#1, FromDigits@ Apply[Join, Map[IntegerDigits, IntegerDigits[#1[[-1]] ] + #2]]] & @@ {#, Length@ #} &, {0}, 11] (* Michael De Vlieger, Nov 13 2020 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jamie Robert Creasey, Nov 07 2020
STATUS
approved