login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A127204
A monotonic doubly-fractal sequence. Erase the last (rightmost) digit of every integer: what is left is the sequence itself. The erased digits, one by one, form also the sequence itself.
5
1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 21, 32, 41, 53, 62, 74, 81, 95, 113, 216, 322, 417, 534, 628, 741, 819, 955, 1131, 2161, 3223, 4172, 5341, 6286, 7413, 8192, 9552, 11314, 21611, 32237, 41725, 53413, 62864, 74136, 81922, 95528, 113147, 216114, 322371, 417258
OFFSET
1,2
LINKS
MATHEMATICA
a = Append[Range@9, 11]; s = {1}; Do[AppendTo[a, 10*a[[-9]] + s[[n]]]; s = Join[s, IntegerDigits[a[[-1]]]], {n, 39}]; a (* Ivan Neretin, Sep 03 2015 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Eric Angelini, Mar 27 2007
STATUS
approved