login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A028726 Nonsquares mod 13. 1
2, 5, 6, 7, 8, 11 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
Since 2 is not a perfect square and there are no solutions to x^2 = 2 mod 13, 2 is in the sequence.
Although 3 is not a perfect square either, there are solutions to x^2 = 3 mod 13, such as x = 4, x = 9. Hence 3 is not in the sequence.
MATHEMATICA
Select[Range[0, 12], JacobiSymbol[#, 13] == -1 &] (* Alonso del Arte, Dec 13 2019 *)
PROG
(Scala) (0 to 12).diff((1 to 13).map(n => (n * n) % 13)) // Alonso del Arte, Dec 13 2019
CROSSREFS
Cf. A010376.
Sequence in context: A028779 A050007 A047579 * A047269 A039027 A129816
KEYWORD
nonn,fini,full
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 27 20:19 EDT 2024. Contains 372020 sequences. (Running on oeis4.)