OFFSET
1,1
COMMENTS
a(1) = 10 is chosen because for n = say d <=9, the sequence is trivially d,d,d,d,d,d,...
The next term has 129 digits (From Harvey P. Dale, Feb 20 2011 *)
EXAMPLE
a(2) = 1001/11=91, a(3) = 9119/11=829.
MATHEMATICA
nxt[n_]:=Module[{idn=IntegerDigits[n]}, FromDigits[Join[idn, Reverse[idn]]]/11]
NestList[nxt, 10, 8] (* Harvey P. Dale, Feb 20 2011 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Amarnath Murthy, Jul 30 2005
EXTENSIONS
More terms from Joshua Zucker, May 10 2006
STATUS
approved