login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A193334 Number of even divisors of sigma(n). 2
0, 0, 2, 0, 2, 4, 3, 0, 0, 3, 4, 4, 2, 6, 6, 0, 3, 0, 4, 4, 5, 6, 6, 8, 0, 4, 6, 6, 4, 9, 5, 0, 8, 4, 8, 0, 2, 8, 6, 6, 4, 10, 4, 8, 4, 9, 8, 4, 0, 0, 9, 3, 4, 12, 9, 12, 8, 6, 8, 12, 2, 10, 6, 0, 8, 12, 4, 6, 10, 12, 9, 0, 2, 4, 4, 8 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
sigma(n) = sum of divisors of n, A000203.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = A183063(A000203(n)). - Amiram Eldar, Mar 22 2024
EXAMPLE
a(14) = 6 because sigma(14) = 24 and the 6 even divisors are {2, 4, 6, 8, 12, 24}.
MATHEMATICA
a[n_] := Block[{d = Divisors[DivisorSigma[1, n]]}, Count[EvenQ[d], True]]; Table[a[n], {n, 80}]
PROG
(PARI) a(n)=n=sigma(n); if(n%2, 0, numdiv(n/2)) \\ Charles R Greathouse IV, Jul 30 2011
CROSSREFS
Sequence in context: A023987 A021498 A025251 * A185081 A011119 A240747
KEYWORD
nonn,easy
AUTHOR
Michel Lagneau, Jul 23 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 19 12:32 EDT 2024. Contains 374394 sequences. (Running on oeis4.)