OFFSET
1,4
COMMENTS
Omega(n) = number of prime divisors of n counted with multiplicity : A001222 (also called bigomega(n)).
a(1) = 0 by convention.
LINKS
FORMULA
From Antti Karttunen, Jul 23 2017: (Start)
(End)
EXAMPLE
a(16) = 6 because Omega(16) = 4 and the sum of the even divisors of 4 {2, 4} is 6.
MATHEMATICA
Table[Total[Select[Divisors[PrimeOmega[n]], EvenQ[ # ]&]], {n, 58}]
PROG
(PARI)
A146076(n) = if(n%2, 0, 2*sigma(n/2)); \\ This function from Michel Marcus, Apr 01 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Jul 29 2011
EXTENSIONS
Description clarified by Antti Karttunen, Jul 23 2017
STATUS
approved