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

A010449
Squares mod 88.
1
0, 1, 4, 9, 12, 16, 20, 25, 33, 36, 44, 48, 49, 56, 60, 64, 80, 81
OFFSET
1,3
EXAMPLE
48 is in the sequence since x^2 = 48 mod 88 has the solutions x = 20, 24, 64, 68.
49 = 7^2 and is thus obviously in the sequence.
There are no solutions to x^2 = 50 mod 88, so 50 is not in the sequence.
MATHEMATICA
Union[PowerMod[Range[88], 2, 88]] (* Alonso del Arte, Apr 05 2017 *)
PROG
(Sage) [quadratic_residues(88)] # Zerinvary Lajos, May 28 2009
(Scala) (1 to 88).map(n => (n * n) % 88).toSet.toSeq.sorted // Alonso del Arte, Dec 22 2019
CROSSREFS
Cf. A028801.
Sequence in context: A348752 A365869 A312856 * A210607 A312857 A309134
KEYWORD
nonn,fini,full,easy
STATUS
approved