A307019 Squares which can be expressed as the product of a number and its reversal in exactly three different ways.
6350400, 43560000, 635040000, 768398400, 4356000000, 42033200400, 55847142400, 63504000000, 64780430400, 72694944400, 76839840000, 78243278400, 234101145600, 435600000000, 4203320040000, 5086017248400, 5584714240000, 6350400000000, 6363107150400, 6478043040000, 6757504230400
Offset: 1
Examples
6350400 = 2520^2 = 25200 * 252 = 14400 * 441 = 44100 * 144. 43560000 = 6600^2 = 660000 * 66 = 52800 * 825 = 82500 * 528.
Links
- Chai Wah Wu, Table of n, a(n) for n = 1..826 (n = 1..70 from David A. Corneth)
- David A. Corneth, Examples of factorizations of terms as described in Name.
- Shyam Sunder Gupta, Equal Product Of Reversible Numbers
Programs
-
PARI
is(n) = {if(!issquare(n), return(0)); my(d = divisors(n), t = 0); forstep(i = #d, #d \ 2 + 1, -1, revd = fromdigits(Vecrev(digits(d[i]))); if(revd * d[i] == n, t++; if(t > 3, return(0)); ) ); t==3 } \\ David A. Corneth, Mar 20 2019
Extensions
Corrected and extended by David A. Corneth, Mar 20 2019
Definition corrected and entry edited by N. J. A. Sloane, Aug 01 2019
Comments