A322835 Non-palindromic numbers n such that n * reverse(n) is a square and n and reverse(n) do not have the same number of digits.
100, 200, 300, 400, 500, 600, 700, 800, 900, 1100, 2200, 3300, 4400, 5500, 6600, 7700, 8800, 9900, 10000, 10100, 11100, 12100, 13100, 14100, 14400, 15100, 16100, 16900, 17100, 18100, 19100, 20000, 20200, 21200, 22200, 23200, 24200, 25200, 26200, 27200, 28200, 28800, 29200, 30000, 30300
Offset: 1
Examples
Example for family 1: 200 * 2 = 400 = 20^2; Example for family 2: 14400 * 441 = 120^2 * 21^2 = 2520^2; Example for family 3: 28800 * 882 = (2 * 120^2) * (2 * 21^2) = 5040^2. Example for family 4: 5449680 * 869445 = 2176740^2. - _Chai Wah Wu_, Jan 07 2019
Links
- Chai Wah Wu, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[100 Range@303, And[! PalindromeQ@ #, IntegerQ@ Sqrt[#1 #2], UnsameQ @@ IntegerLength@ {#1, #2}] & @@ {#, IntegerReverse@ #} &] (* Michael De Vlieger, Jan 03 2019 *)
-
PARI
is(n) = n % 10 == 0 && issquare(n * fromdigits(Vecrev(digits(n)))) \\ David A. Corneth, Jan 03 2019
Comments