← RoseCode

ROSECODE 410

Magic square of squares

Philippe_57721 · Programming ·

It is a open problem to know whether a 3×3 magic square containing only squares exists or not.

We say a square is almost magic if all the sums are equal except for the anti-diagonal

The following square is almost magic: [1742381213822912222224622822623392]
What is the first (lexicographic order) almost magic square with all elements squares of numbers 200

Answer format: comma separated list of the square root of each element
(All values must be distinct)

Exemple: 174,381,138,291,222,246,282,6,339 // For the above example

[My timing: 25 sec]