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!)
A262932 Numbers k such that 7 is a square mod k. 2
1, 2, 3, 6, 7, 9, 14, 18, 19, 21, 27, 29, 31, 37, 38, 42, 47, 53, 54, 57, 58, 59, 62, 63, 74, 81, 83, 87, 93, 94, 103, 106, 109, 111, 113, 114, 118, 126, 131, 133, 137, 139, 141, 149, 159, 162, 166, 167, 171, 174, 177, 186, 189, 193, 197, 199, 203, 206, 217, 218, 222 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
7^2 == 7 (mod 14), so 14 is a term.
5^2 == 7 (mod 18) and 13^2 == 7 (mod 18), so 18 is a term.
MAPLE
with(numtheory):
a:= proc(n) option remember; local k;
for k from 1+`if`(n=1, 0, a(n-1))
while mroot(7, 2, k)=FAIL do od; k
end:
seq(a(n), n=1..80); # Alois P. Heinz, Feb 24 2017
MATHEMATICA
Join[{1}, Table[If[Reduce[x^2 == 7, Modulus->n] === False, Null, n], {n, 2, 300}]//Union] (* Vincenzo Librandi, Oct 05 2015 *)
PROG
(PARI) for(n=1, 300, if (issquare(Mod(7, n)), print1(n", "))); \\ Altug Alkan, Oct 04 2015
(Magma) [n: n in [1..300] | exists(t){x : x in ResidueClassRing(n) | x^2 eq 7}]; // Vincenzo Librandi, Oct 05 2015
CROSSREFS
Sequence in context: A177729 A049993 A167793 * A018423 A018700 A018295
KEYWORD
nonn,easy
AUTHOR
Erik Pelttari, Oct 04 2015
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 25 01:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)