login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A336696
Sum of odd divisors of 1+sigma(n).
6
1, 1, 6, 1, 8, 14, 13, 1, 8, 20, 14, 30, 24, 31, 31, 1, 20, 6, 32, 44, 48, 38, 31, 62, 1, 44, 42, 80, 32, 74, 48, 1, 57, 72, 57, 24, 56, 62, 80, 112, 44, 98, 78, 108, 80, 74, 57, 156, 30, 48, 74, 156, 72, 133, 74, 133, 121, 112, 62, 183, 104, 98, 192, 1, 108, 180, 96, 128, 98, 180, 74, 57, 124, 144, 156, 192, 98
OFFSET
1,3
FORMULA
a(n) = A000593(1+A000203(n)) = A000593(A088580(n)) = A000593(A332459(n)).
MATHEMATICA
Table[Total[Select[Divisors[1+DivisorSigma[1, n]], OddQ]], {n, 80}] (* Harvey P. Dale, Jan 01 2022 *)
PROG
(PARI)
A000593(n) = sigma(n>>valuation(n, 2));
A336696(n) = A000593(1+sigma(n));
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jul 31 2020
STATUS
approved