login
A390960
The number of noninfinitary divisors of the numbers whose number of divisors is not a power of 2 (A162643).
3
1, 1, 2, 3, 2, 2, 1, 2, 2, 5, 2, 2, 6, 1, 2, 2, 4, 2, 3, 2, 4, 2, 2, 6, 3, 4, 4, 2, 4, 2, 2, 5, 4, 6, 2, 2, 1, 2, 4, 4, 4, 11, 2, 2, 4, 2, 4, 4, 6, 2, 1, 2, 2, 2, 6, 10, 2, 6, 5, 4, 4, 4, 2, 6, 2, 4, 4, 5, 4, 4, 2, 12, 2, 2, 2, 2, 10, 7, 4, 2, 2, 6, 2, 4, 2, 2, 10
OFFSET
1,3
COMMENTS
The nonzero terms in A348341.
The sum of these divisors is A390961(n).
LINKS
FORMULA
a(n) = A348341(A162643(n)).
Sum_{k=1..n} a(k) ~ c * n * log(n), where c = (1 - 2 * A327576) / (1 - A327839) = 0.85449275005462574627... .
MATHEMATICA
s[1] = 0; s[n_] := Module[{e = FactorInteger[n][[;; , 2]]}, Times @@ (e + 1) - Times @@ (2^DigitCount[#, 2, 1] & /@ e)]; Select[Array[s, 300], # > 0 &]
PROG
(PARI) list(kmax) = {my(f, d); for(k = 1, kmax, f = factor(k); d = numdiv(f) - vecprod(apply(x -> 1 << hammingweight(x), f[, 2])); if(d > 0, print1(d, ", "))); }
CROSSREFS
Similar sequences: A174961, A390958.
Sequence in context: A186037 A144365 A152197 * A049342 A112966 A286657
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Nov 25 2025
STATUS
approved