OFFSET
1,2
EXAMPLE
For n = 10 the divisors of 10 are 1, 2, 5, 10, so a(10) = 1^3 + 2^3 + 5^3 + 1^3 + 0^3 = 1 + 8 + 125 + 1 + 0 = 135.
For n = 11 the divisors of 11 are 1, 11, so a(11) = 1^3 + 1^3 + 1^3 = 1 + 1 + 1 = 3.
MATHEMATICA
Table[Total[Flatten@ IntegerDigits[Divisors@ n]^3], {n, 60}] (* Michael De Vlieger, Sep 27 2016 *)
PROG
(PARI) a(n) = sumdiv(n, d, dd = digits(d); sum(k=1, #dd, dd[k]^3)); \\ Michel Marcus, Sep 29 2016
CROSSREFS
KEYWORD
nonn,base,easy,less
AUTHOR
Bhushan Bade, Sep 27 2016
EXTENSIONS
More terms from Michael De Vlieger, Sep 27 2016
STATUS
approved