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

A319647
a(n) = [x^n] Product_{k>=1} 1/(1 - x^k)^sigma_n(k).
12
1, 1, 6, 38, 526, 13074, 702813, 70939556, 13879861574, 5583837482767, 4393101918607162, 6717450870069292051, 21057681806321501744772, 131246096280071506595491449, 1604095619160115980216291007253, 40299198842857238408636666363954678, 2031474817845087309816967328335309651478
OFFSET
0,3
LINKS
FORMULA
a(n) = [x^n] Product_{i>=1, j>=1} 1/(1 - x^(i*j))^(j^n).
a(n) = [x^n] exp(Sum_{k>=1} sigma_(n+1)(k)*x^k/(k*(1 - x^k))).
MAPLE
with(numtheory):
b:= proc(n, k) option remember; `if`(n=0, 1, add(add(d*
sigma[k](d), d=divisors(j))*b(n-j, k), j=1..n)/n)
end:
a:= n-> b(n$2):
seq(a(n), n=0..20); # Alois P. Heinz, Oct 26 2018
MATHEMATICA
Table[SeriesCoefficient[Product[1/(1 - x^k)^DivisorSigma[n, k], {k, 1, n}], {x, 0, n}], {n, 0, 16}]
Table[SeriesCoefficient[Product[Product[1/(1 - x^(i j))^(j^n), {j, 1, n}], {i, 1, n}], {x, 0, n}], {n, 0, 16}]
Table[SeriesCoefficient[Exp[Sum[DivisorSigma[n + 1, k] x^k/(k (1 - x^k)), {k, 1, n}]], {x, 0, n}], {n, 0, 16}]
PROG
(PARI) {a(n) = polcoeff(prod(k=1, n, 1/(1-x^k+x*O(x^n))^sigma(k, n)), n)} \\ Seiichi Manyama, Oct 27 2018
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 26 2018
STATUS
approved