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

A010415
Squares mod 54.
1
0, 1, 4, 7, 9, 10, 13, 16, 19, 22, 25, 27, 28, 31, 34, 36, 37, 40, 43, 46, 49, 52
OFFSET
1,3
MATHEMATICA
Union[PowerMod[Range[54], 2, 54]] (* Alonso del Arte, Dec 27 2019 *)
PROG
(Sage) [quadratic_residues(54)] # Zerinvary Lajos, May 24 2009
(Scala) (1 to 54).map(n => (n * n) % 54).toSet.toSeq.sorted // Alonso del Arte, Dec 27 2019
CROSSREFS
Cf. A028767.
Sequence in context: A056991 A242660 A010389 * A010442 A055047 A234429
KEYWORD
nonn,fini,full,easy
STATUS
approved