OFFSET
1,16
COMMENTS
Conjecture is true, since having an n with k distinct prime factors such that a(n) = 0 requires that 2k+1 can be factored into k parts > 1, and 1 is the only positive k for which this is possible. - Charlie Neder, Feb 12 2019
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000
FORMULA
EXAMPLE
For n = 24: The set of divisors of 24 is {1, 2, 3, 4, 6, 8, 12, 24}. The prime divisors are {2, 3} and the composite divisors are {4, 6, 8, 12, 24}. The cardinalities of the sets are 2 and 5, respectively, and abs(2-5) = 3, so a(24) = 3.
MATHEMATICA
Array[Abs[2 PrimeNu@ # - DivisorSigma[0, #] + 1] &, 105] (* Michael De Vlieger, Feb 17 2019 *)
PROG
(PARI) a(n) = my(d=divisors(n), p=0, c=0); for(k=2, #d, if(ispseudoprime(d[k]), p++, c++)); abs(p-c)
(PARI) a(n) = abs(2*omega(n) - numdiv(n) + 1); \\ Michel Marcus, Feb 12 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Felix Fröhlich, Feb 08 2019
EXTENSIONS
a(1)=0 prepended by David A. Corneth, Feb 12 2019
STATUS
approved