login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A028766
Nonsquares mod 53.
1
2, 3, 5, 8, 12, 14, 18, 19, 20, 21, 22, 23, 26, 27, 30, 31, 32, 33, 34, 35, 39, 41, 45, 48, 50, 51
OFFSET
1,1
MATHEMATICA
Complement[Range[0, 52], PowerMod[Range[53], 2, 53]] (* Alonso del Arte, May 03 2020 *)
PROG
(Scala) (0 to 52).diff((1 to 53).map(n => n * n % 53)) // Alonso del Arte, May 03 2020
CROSSREFS
Cf. A010414.
Sequence in context: A067288 A308075 A211181 * A342494 A022487 A305377
KEYWORD
nonn,fini,full,easy
AUTHOR
STATUS
approved