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 A053143 #26 Jul 29 2022 09:54:35 %S A053143 1,4,9,4,25,36,49,16,9,100,121,36,169,196,225,16,289,36,361,100,441, %T A053143 484,529,144,25,676,81,196,841,900,961,64,1089,1156,1225,36,1369,1444, %U A053143 1521,400,1681,1764,1849,484,225,2116,2209,144,49,100,2601,676,2809 %N A053143 Smallest square divisible by n. %H A053143 Vaclav Kotesovec, <a href="/A053143/b053143.txt">Table of n, a(n) for n = 1..10000</a> %H A053143 Henry Bottomley, <a href="http://fs.gallup.unm.edu/Bottomley-Sm-Mult-Functions.htm">Some Smarandache-type multiplicative sequences</a>. %F A053143 a(n) = n*A007913(n) = A019554(n)^2 = n^2/A008833(n) = (n/A000188(n))^2. %F A053143 Multiplicative with p^e -> p^(e + e mod 2), p prime. - _Reinhard Zumkeller_, Feb 09 2003 %F A053143 Dirichlet g.f.: zeta(2s-2)*zeta(s-2)/zeta(2s-4). - _R. J. Mathar_, Oct 31 2011 %F A053143 Sum_{k=1..n} a(k) ~ Pi^2 * n^3 / 45. - _Vaclav Kotesovec_, Feb 08 2019 %F A053143 Sum_{n>=1} 1/a(n) = 5/2. - _Amiram Eldar_, Jul 29 2022 %t A053143 Table[i = 1; While[Mod[i^2, n] > 0, i++]; i^2, {n, 100}] (* _T. D. Noe_, Oct 30 2011 *) %t A053143 f[p_, e_] := p^(e + Mod[e, 2]); a[n_] := Times @@ (f @@@ FactorInteger[n]); Array[a, 100] (* _Amiram Eldar_, Aug 29 2019 *) %o A053143 (PARI) a(n) = n*core(n); /* _Joerg Arndt_, Aug 02 2012 */ %Y A053143 Cf. A000188, A007913, A008833, A019554. %K A053143 easy,nonn,mult %O A053143 1,2 %A A053143 _Henry Bottomley_, Feb 28 2000