OFFSET
1,1
COMMENTS
Computer-based iteration shows that there are very few integers such that the square root of the reverse of the square of the integer yields an integer with the same number of digits. Between 1 and 100,000 there are just 168. Curiously, 153 of these 168 yield an integer that is the mirror (or reverse) of the starting number. Two examples: 21^2 = 441 and sqrt(144) = 12; 22^2 = 484 and sqrt(484) = 22. Intuition suggests that this mirroring is more likely if the square is a palindrome (as in the second example). But this is not the case. (The square is not a palindrome in 132 of the 153 cases.) The opposite appears to be the true for those integers that do not yield an equi-digit mirror: more cases occur where the square is a palindrome (9) than when it is not (6). The sequence is of those integers that generate neither a palindrome on squaring nor a mirror when the square root is taken of the reverse of the square (up to 10^6).
REFERENCES
G. Marnell, Mathematical Doodlings: Curiosities, Conjectures and Challenges, Burdock Books, 2017, pages 96-102.
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..9794 (terms < 3*10^13)
MATHEMATICA
rev[n_] := FromDigits@ Reverse@ IntegerDigits@n; Select[Range[10^5], (r = rev[#^2]) != #^2 && IntegerQ[q = Sqrt[r]] && q != rev[#] && Equal @@ IntegerLength[{q, #}] &] (* Giovanni Resta, Apr 15 2017 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Geoffrey Marnell, Apr 06 2017
EXTENSIONS
a(11)-a(30) from Giovanni Resta, Apr 15 2017
STATUS
approved