OFFSET
1,1
MATHEMATICA
Complement[Range[0, 77], PowerMod[Range[78], 2, 78]] (* Alonso del Arte, Dec 26 2019 *)
PROG
(PARI) for(k=0, 78, if(!issquare(Mod(k, 78)), print1(k, ", "))) \\ Hugo Pfoertner, Dec 02 2019
(Scala) (0 to 77).diff((1 to 78).map(n => (n * n) % 78)) // Alonso del Arte, Dec 26 2019
CROSSREFS
KEYWORD
nonn,fini,full,easy
AUTHOR
EXTENSIONS
Incorrect term 39 removed by Alonso del Arte, Dec 01 2019
STATUS
approved