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 A344274 #6 May 14 2021 02:54:00 %S A344274 1,6,24,105,385,1554,6063,23688,92610,362112,1416360,5539296,21663378, %T A344274 84725487,331362185,1295952084,5068450464,19822658688 %N A344274 a(n) is the least k such that the average number of infinitary divisors of {1..k} is >= n. %F A344274 Lim_{n->oo} a(n+1)/a(n) = exp(1/(2*c)) = 3.9109891037..., where c is A327576. %e A344274 a(2) = 6 since the average number of infinitary divisors of {1..6} is A327573(6)/6 = 13/6 > 2. %t A344274 f[p_, e_] := 2^DigitCount[e, 2, 1]; idivnum[1] = 1; idivnum[n_] := Times @@ (f @@@ FactorInteger[n]); seq={}; s = 0; k = 1; Do[While[s = s + idivnum[k]; s < k*n, k++]; AppendTo[seq, k]; k++, {n, 1, 10}]; seq %Y A344274 Cf. A037445, A327573, A327576. %Y A344274 The infinitary version of A085829. %Y A344274 Similar sequences: A328331, A336304, A338891, A338943, A344272, A344273. %K A344274 nonn,more %O A344274 1,2 %A A344274 _Amiram Eldar_, May 13 2021