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”).

A028775
Nonsquares mod 62.
1
3, 6, 11, 12, 13, 15, 17, 21, 22, 23, 24, 26, 27, 29, 30, 34, 37, 42, 43, 44, 46, 48, 52, 53, 54, 55, 57, 58, 60, 61
OFFSET
1,1
MATHEMATICA
Complement[Range[0, 61], PowerMod[Range[62], 2, 62]] (* Alonso del Arte, Dec 31 2019 *)
PROG
(Scala) (0 to 61).diff((1 to 62).map(n => n * n % 62)) // Alonso del Arte, Dec 31 2019
CROSSREFS
Cf. A010423.
Sequence in context: A183543 A256108 A028744 * A223910 A022155 A066157
KEYWORD
nonn,fini,full,easy
EXTENSIONS
Incorrect term 31 removed by Alonso del Arte, Nov 29 2019
STATUS
approved