OFFSET
1,6
FORMULA
EXAMPLE
a(6) = 8 since the divisors of 6 are {1, 2, 3, 6}, k = 3, 6, and 9 are each the sum of 2 subsets (3: {1,2} and {3}, 6: {1,2,3} and {6}, 9: {1,2,6} and {3,6}) and the other values of k are sums of a single subset. Thus, a(6) = 1*1*2*1*1*2*1*1*2*1*1*1 = 8.
MATHEMATICA
T[n_, k_] := Module[{d = Divisors[n]}, SeriesCoefficient[Series[Product[1 + x^d[[i]], {i, Length[d]}], {x, 0, k}], k]]; a[n_] := Product[T[n, k], {k, 1, DivisorSigma[1, n]}]; Array[a, 50]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Mar 29 2019
STATUS
approved