login
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).
7
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,1
COMMENTS
The sequence has infinitely many terms, some of which can be derived from 1089 and 2178.
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
EXAMPLE
2178 is a term as 2178*8712 = 4356^2.
10891089 is a term as 10891089*98019801 = 32673267^2.
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 *)
CROSSREFS
Cf. A004086.
Subsequence of A029742.
Sequence in context: A205190 A085426 A034289 * A035090 A064021 A156316
KEYWORD
nonn,base,easy,changed
AUTHOR
Amarnath Murthy, Jul 02 2001
EXTENSIONS
More terms from Reiner Martin, Jul 10 2001
STATUS
approved