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 A318166 #15 Aug 24 2018 04:54:26 %S A318166 1,2,2,2,32,141,141,141,42410,171890,2648985,10896843,10896843, %T A318166 727940625,1791416073,19183907363,62520703916,162891847444, %U A318166 162891847444,349662337209,7858045724108 %N A318166 a(n) begins the first run of at least n consecutive numbers with the same number of infinitary divisors. %C A318166 The infinitary version of A006558. %e A318166 a(5) = 32 since the number of infinitary divisors of 32, 33, 34, 35 and 36 is 4, and this is the first run of 5 consecutive numbers. %t A318166 idivnum[1] = 1; idivnum[n_] := Times @@ Flatten[2^DigitCount[#, 2, 1] & /@ FactorInteger[n][[All, 2]]]; Seq[n_, q_] := Map[idivnum, Range[n, n + q - 1]]; findConsec[q_, nmin_, nmax_] := Module[{}, s = Seq[1, q]; n = q + 1; found = False; Do[If[CountDistinct[s] == 1, found = True; Break[]]; s = Rest[AppendTo[s, idivnum[n]]]; n++, {k, nmin, nmax}]; If[found, n - q, 0]]; seq = {1}; nmax = 10000000; Do[n1 = Last[seq]; s1 = findConsec[m, n1, nmax]; If[s1 == 0, Break[]]; AppendTo[seq, s1], {m, 2, 11}]; %Y A318166 Cf. A006558, A037445, A045983. %K A318166 nonn,more %O A318166 1,2 %A A318166 _Amiram Eldar_, Aug 20 2018 %E A318166 a(12)-a(21) from _Giovanni Resta_, Aug 24 2018