OFFSET
1,1
COMMENTS
The terms in this sequence are mostly of the form m * 100^k with k >= 1, but this condition is not sufficient.
There are exactly four families of such integers here: numbers of the forms A002113(j)*100^k, A035090(j)*100^k, A082994(j)*100^k and A323061(j)*10^(2k+1).
All terms are multiples of 10, but they are not necessarily multiples of 100. The first multiple of 10 that is not a multiple of 100 is a(755) = 5449680, and there are only 30 such terms among the first 10000 terms. - Chai Wah Wu, Jan 07 2019
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..10000
EXAMPLE
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
MATHEMATICA
Select[100 Range@303, And[! PalindromeQ@ #, IntegerQ@ Sqrt[#1 #2], UnsameQ @@ IntegerLength@ {#1, #2}] & @@ {#, IntegerReverse@ #} &] (* Michael De Vlieger, Jan 03 2019 *)
PROG
(PARI) is(n) = n % 10 == 0 && issquare(n * fromdigits(Vecrev(digits(n)))) \\ David A. Corneth, Jan 03 2019
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Bernard Schott, Jan 02 2019
STATUS
approved
