|
|
A028869
|
|
Squares of primes with digits in descending order.
|
|
3
|
|
|
|
OFFSET
|
1,1
|
|
COMMENTS
|
No other solutions below 4 * 10^18 (probably finite). - Dec 15 1999
|
|
LINKS
|
|
|
EXAMPLE
|
961 = 31^2 is in the sequence since its digits (9, 6, 1) are in descending order.
1369 = 37^2 is not in the sequence, since its digits in descending order are: 9, 6, 3, 1.
|
|
MATHEMATICA
|
Select[Prime[Range[100]]^2, IntegerDigits[#] == Sort[IntegerDigits[#], Less] &] (* Alonso del Arte, Aug 12 2016 *)
|
|
CROSSREFS
|
|
|
KEYWORD
|
nonn,base,hard,more
|
|
AUTHOR
|
|
|
EXTENSIONS
|
|
|
STATUS
|
approved
|
|
|
|