This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A010461 #27 Sep 08 2022 08:44:37 %S A010461 0,1,4,9,16,21,24,25,29,36,41,44,49,56,61,64,69,76,81,84,89,96 %N A010461 Squares mod 100. %C A010461 Range of A002015; subset of A122986. - _Reinhard Zumkeller_, Mar 21 2010 %t A010461 Union[PowerMod[Range[100], 2, 100]] (* _Alonso del Arte_, Dec 25 2019 *) %o A010461 (Sage) [quadratic_residues(100)] # _Zerinvary Lajos_, May 28 2009 %o A010461 (PARI) A010461=Set(vector(100,n,n^2)%100) \\ _M. F. Hasler_, Mar 03 2014 %o A010461 (Scala) (1 to 100).map(n => (n * n) % 100).toSet.toSeq.sorted // _Alonso del Arte_, Dec 25 2019 %o A010461 (Magma) [n: n in [0..99] | IsSquare(R! n) where R:= ResidueClassRing(100)]; // _Vincenzo Librandi_, Dec 28 2019 %Y A010461 Cf. A010382, A010411, A010462, A010421. - _Reinhard Zumkeller_, Mar 21 2010 %Y A010461 Row 100 of A096008. %Y A010461 Cf. A028813. %K A010461 nonn,fini,full,easy %O A010461 1,3 %A A010461 _N. J. A. Sloane_