login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A344273
a(n) is the least k such that the average number of bi-unitary divisors of {1..k} is >= n.
2
1, 6, 24, 80, 273, 960, 3336, 11480, 39648, 136952, 472416, 1630164, 5625480, 19412736, 66992016, 231184800, 797806152, 2753187210, 9501109380, 32787848746
OFFSET
1,2
FORMULA
Lim_{n->oo} a(n+1)/a(n) = exp(1/A) = 3.4509501567..., where A is A306071.
EXAMPLE
a(2) = 6 since the average number of bi-unitary divisors of {1..6} is A306069(6)/6 = 13/6 > 2.
MATHEMATICA
f[p_, e_] := If[OddQ[e], e + 1, e]; bdivnum[1] = 1; bdivnum[n_] := Times @@ (f @@@ FactorInteger[n]); seq={}; s = 0; k = 1; Do[While[s = s + bdivnum[k]; s < k*n, k++]; AppendTo[seq, k]; k++, {n, 1, 10}]; seq
CROSSREFS
The unitary version of A085829.
Similar sequences: A328331, A336304, A338891, A338943, A344272, A344274.
Sequence in context: A201189 A001788 A068711 * A320856 A047790 A133474
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, May 13 2021
STATUS
approved