login
A270304
Numbers that equal the sum of the squares of the digits of their own square in base 15.
3
0, 1, 159, 264, 284, 306, 387
OFFSET
1,3
COMMENTS
In base 14: 0, 1 only.
There are no further terms below 400000. - Harvey P. Dale, Sep 02 2021
This list is complete. Consider n, a 4 digit number in base 15. Clearly, n>=15^3=3375. Also, n^2 has no more than 8 digits base 15, and no digit is larger than 14, so the sum of the squares of the digits of n^2 is <= 2*4*14^2=1568, allowing no solutions. As n increases exponentially in the number of digits and the sum increases linearly, there are no solutions greater than 3375. - Gus Michel, Oct 04 2024
MATHEMATICA
Select[Range[0, 400], Total[IntegerDigits[#^2, 15]^2]==#&] (* Harvey P. Dale, Sep 01 2021 *)
CROSSREFS
KEYWORD
nonn,fini,full,base
AUTHOR
Daniel Mondot, Mar 14 2016
STATUS
approved