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

A010409
Squares mod 48.
1
0, 1, 4, 9, 16, 25, 33, 36
OFFSET
1,3
MATHEMATICA
Union[PowerMod[Range[48], 2, 48]] (* Alonso del Arte, Dec 24 2019 *)
PROG
(Sage) [quadratic_residues(48)] # Zerinvary Lajos, May 24 2009
(Scala) (1 to 48).map(n => (n * n) % 48).toSet.toSeq.sorted // Alonso del Arte, Dec 24 2019
CROSSREFS
Cf. A028761.
Sequence in context: A337534 A126589 A340585 * A010457 A244833 A331220
KEYWORD
nonn,fini,full,easy
STATUS
approved