login
A383278
The number of integers k such that A034444(k) * k <= n.
4
1, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 5, 5, 6, 6, 7, 7, 8, 8, 8, 8, 9, 9, 10, 10, 11, 11, 11, 11, 11, 11, 12, 12, 13, 13, 13, 13, 14, 14, 15, 15, 15, 15, 15, 15, 16, 16, 17, 17, 18, 18, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, 23, 23, 24, 24, 24, 24, 24, 24, 24, 24
OFFSET
1,4
COMMENTS
The number of terms of A383276 not exceeding n.
REFERENCES
József Sándor, Dragoslav S. Mitrinovic, and Borislav Crstici, Handbook of Number Theory I, Springer Science & Business Media, 2005, Chapter II, section 31, page 72.
LINKS
H. L. Abbott and M. V. Subbarao, On the Distribution of the Sequence {nd*(n)}, Canadian Mathematical Bulletin , Vol. 32 , No. 1 (1989), pp. 105-108.
FORMULA
a(n) = Sum_{k=1..n} A383277(k).
a(n) = (c + o(1)) * n / sqrt(log(n)), where c = (1/sqrt(Pi)) * Product_{p prime} (p-1/2)/sqrt(p*(p-1)) = A087197 * A345288 = 0.61890644913204789046... (Abbott and Subbarao, 1989).
MATHEMATICA
Accumulate[Table[DivisorSum[n, 1 &, # * 2^PrimeNu[#] == n &], {n, 1, 100}]]
(* second program: *)
f[n_] := Module[{e = IntegerExponent[n, 2], w}, w = PrimeNu[n/2^e]; If[e > w + 1 || e == w, 1, 0]]; Accumulate[Array[f, 100]]
PROG
(PARI) list(lim) = my(s = 0); for(n = 1, lim, s += sumdiv(n, d, (1 << omega(d)) * d == n); print1(s, ", "));
(PARI) f(n) = {my(e = valuation(n, 2), w = omega(n >> e)); e > w + 1 || e == w; }
list(lim) = my(s = 0); for(n = 1, lim, s += f(n); print1(s, ", "));
CROSSREFS
Partial sums of A383277.
The unitary analog of A356005.
Sequence in context: A377028 A392987 A225559 * A082479 A090616 A186704
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Apr 21 2025
STATUS
approved