A062917 Nonpalindromic numbers k such that k is not divisible by 10 and k*R(k) is a square, where R(k) is the reversal of k (A004086).
144, 169, 288, 441, 528, 768, 825, 867, 882, 961, 1089, 1584, 2178, 4851, 8712, 9801, 10404, 10609, 10989, 12544, 12769, 13104, 14544, 14884, 15984, 20808, 21978, 26208, 27648, 27848, 36828, 40131, 40401, 44521, 44541, 48139, 48841, 48951
Offset: 1
Examples
2178 is a term as 2178*8712 = 4356^2. 10891089 is a term as 10891089*98019801 = 32673267^2.
Links
- Giovanni Resta, Table of n, a(n) for n = 1..2338 (terms < 10^12, n = 1..150 from Harvey P. Dale, n = 151..1000 from Chai Wah Wu)
- Eric Weisstein's World of Mathematics, Reversal
Programs
-
Mathematica
okQ[n_]:=Module[{idn=IntegerDigits[n],ridn},ridn=Reverse[idn];idn!= ridn && !Divisible[n,10]&&IntegerQ[Sqrt[n FromDigits[ridn]]]]; Select[Range[ 50000], okQ] (* Harvey P. Dale, Dec 08 2012 *)
Extensions
More terms from Reiner Martin, Jul 10 2001
Comments