OFFSET
1,3
COMMENTS
Sopf(n) is the sum of the distinct primes dividing n (A008472).
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..20000
FORMULA
EXAMPLE
a(26) = 4 because Sopf(26) = 15 and the 4 odd divisors are {1, 3, 5, 15}.
MATHEMATICA
f[n_] := Block[{d=Divisors[Plus@@First[Transpose[FactorInteger[n]]]]}, Count[OddQ[d], True]]; Table[f[n], {n, 100}]
PROG
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Jul 29 2011
EXTENSIONS
More terms from Antti Karttunen, Dec 23 2018
STATUS
approved