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”).

A073807
Number of divisors of sum of cube of divisors.
1
1, 3, 6, 2, 12, 18, 8, 12, 2, 20, 18, 12, 8, 24, 36, 4, 32, 6, 24, 24, 24, 30, 36, 72, 4, 24, 32, 16, 24, 60, 36, 16, 60, 48, 60, 4, 16, 72, 24, 80, 24, 72, 24, 36, 24, 60, 60, 24, 8, 12, 96, 16, 20, 96, 80, 96, 50, 40, 72, 72, 16, 108, 16, 8, 54, 100, 12, 64, 108, 100, 32, 24
OFFSET
1,2
COMMENTS
a(n) = 2 for n in A063783. - Robert Israel, Jul 12 2023
LINKS
FORMULA
a(n) = A000005(A001158(n)).
EXAMPLE
For n=10: D={1,2,5,10}, 1+8+125+1000=1134, divisors(1134)={1,2,3,6,7,9,14,18,21,27,42,54,63,81,126,162,189,378,567,1134} so a(10)=20.
MAPLE
f:= n -> numtheory:-tau(numtheory:-sigma[3](n)):
map(f, [$1..100]); # Robert Israel, Jul 12 2023
MATHEMATICA
Table[DivisorSigma[0, DivisorSigma[3, n]], {n, 80}] (* Harvey P. Dale, Dec 13 2011 *)
PROG
(PARI) a(n) = numdiv(sigma(n, 3)); \\ Michel Marcus, Jul 13 2023
KEYWORD
nonn
AUTHOR
Labos Elemer, Aug 13 2002
STATUS
approved