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

A028805
Nonsquares mod 92.
1
2, 3, 5, 6, 7, 10, 11, 14, 15, 17, 18, 19, 20, 21, 22, 23, 26, 27, 28, 30, 31, 33, 34, 35, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 65, 66, 67, 68, 70, 71, 74, 75, 76, 78, 79, 80, 82, 83, 84, 86, 87, 88, 89, 90, 91
OFFSET
1,1
MATHEMATICA
Complement[Range[0, 91], PowerMod[Range[92], 2, 92]] (* Alonso del Arte, Dec 23 2019 *)
PROG
(Scala) (0 to 91).diff((1 to 92).map(n => (n * n) % 92)) // Alonso del Arte, Dec 23 2019
CROSSREFS
Cf. A010453.
Sequence in context: A289997 A137313 A246867 * A322846 A302496 A117344
KEYWORD
nonn,fini,full,easy
STATUS
approved