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 A332314 #4 Feb 09 2020 20:11:13 %S A332314 263449773,334047725,760228973,862305773,1965540624,2136055725, %T A332314 2362380525,2477365422,2515570575,2613782223,2939626925,3181603023, %U A332314 3814526223,3987335022,4610697039,4771214574,4981539822,5018728272,5035157775,5186567824,6189727725,6329159823,6569396973 %N A332314 Numbers k such that k, k + 1, k + 2 and k + 3 have the same number of divisors in Gaussian integers. %e A332314 263449773 is a term since 263449773, 263449774, 263449775 and 263449776 each have 72 divisors in Gaussian integers. %t A332314 gaussNumDiv[n_] := DivisorSigma[0, n, GaussianIntegers -> True]; m = 4; s = gaussNumDiv /@ Range[m]; seq = {}; n = m + 1; While[Length[seq] < 10, If[Length @ Union[s] == 1, AppendTo[seq, n - m + 1]]; n++; s = Join[Rest[s], {gaussNumDiv[n]}]]; seq %Y A332314 Cf. A006601, A062327, A332312, A332313. %K A332314 nonn %O A332314 1,1 %A A332314 _Amiram Eldar_, Feb 09 2020