OFFSET
1,1
COMMENTS
a(n) is a palindrome if n is not == 0 (mod 10).
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
a(10) = 0110 = 110.
a(12) = 1221.
a(1232) = 12233221
MATHEMATICA
iodo[n_]:=Module[{iod=Sort[IntegerDigits[n]]}, FromDigits[Join[iod, Reverse[iod]]]]; Array[iodo, 60] (* Harvey P. Dale, Aug 24 2022 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Amarnath Murthy, Nov 07 2005
EXTENSIONS
More terms from Jessica Mabel (jem411(AT)psu.edu), Apr 25 2006
STATUS
approved