OFFSET
1,1
MATHEMATICA
Complement[Range[0, 53], PowerMod[Range[54], 2, 54]] (* Alonso del Arte, Dec 27 2019 *)
PROG
(Scala) (0 to 53).diff((1 to 54).map(n => (n * n) % 54)) // Alonso del Arte, Dec 27 2019
(Magma) [ n: n in [0..53] | not IsSquare(R! n) where R:= ResidueClassRing(54)]; // Vincenzo Librandi, Dec 28 2019
CROSSREFS
KEYWORD
nonn,fini,full,easy
AUTHOR
STATUS
approved