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

A082557
G.f.: Product_{m>=1} 1/(1-x^m)^32.
3
1, 32, 560, 7040, 70840, 604352, 4528832, 30529280, 188313180, 1076484640, 5759310304, 29064224896, 139226153920, 636391492800, 2787844780160, 11748015743232, 47774241056710, 187997792512640, 717605948122000, 2662641484567680, 9621587501598688, 33916687860860288
OFFSET
0,2
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(
numtheory[sigma](j)*a(n-j), j=1..n)*32/n)
end:
seq(a(n), n=0..25); # Alois P. Heinz, Mar 12 2015
MATHEMATICA
With[{nn=30}, CoefficientList[Series[Product[1/(1-x^m)^32, {m, nn}], {x, 0, nn}], x]] (* Harvey P. Dale, Sep 04 2020 *)
CROSSREFS
Cf. 32nd column of A144064.
Sequence in context: A233683 A093751 A178372 * A022660 A220631 A304308
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, May 04 2003
STATUS
approved