OFFSET
1,10
COMMENTS
a(1) = 1, a(18) = 18. Are there more terms for which a(k) = k?
In response to the above question, these are the terms, up to the 1000th term, for which a(k)=k: 1, 10, 18, 100, 180, 520, 1000. - Harvey P. Dale, Jan 20 2026
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
a(12) = lcm(12,21)/gcd(12,21) = 84/3 = 28.
MATHEMATICA
r[n_] := FromDigits[ Reverse[ IntegerDigits[n]]]; Table[ LCM[n, r[n]] / GCD[n, r[n]], {n, 1, 65}]
Table[With[{r=IntegerReverse[n]}, LCM[n, r]/GCD[n, r]], {n, 60}] (* Harvey P. Dale, Jan 20 2026 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, May 09 2002
EXTENSIONS
Edited by Robert G. Wilson v, May 10 2002
STATUS
approved
