login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A319757 Expansion of Product_{k>=1} (1 - x^k)^(k*(k+1)*(2*k+1)/6). 0
1, -1, -5, -9, -6, 35, 125, 275, 291, -241, -2111, -5989, -10990, -11660, 6454, 68298, 201859, 400794, 546122, 269907, -1175825, -4890783, -11746437, -20668698, -25146121, -7959643, 63707489, 236244458, 546634684, 956731805, 1220119643, 676723572, -1964409479, -8645307595 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: Product_{k>=1} (1 - x^k)^A000330(k).
G.f.: exp(-Sum_{k>=1} x^k*(1 + x^k)/(k*(1 - x^k)^4)).
G.f.: exp(-Sum_{k>=1} (2*sigma_4(k) + 3*sigma_3(k) + sigma_2(k))*x^k/(6*k)).
MAPLE
a:=series(mul((1-x^k)^(k*(k+1)*(2*k+1)/6), k=1..100), x=0, 34): seq(coeff(a, x, n), n=0..33); # Paolo P. Lava, Apr 02 2019
MATHEMATICA
nmax = 33; CoefficientList[Series[Product[(1 - x^k)^(k (2 k + 1) (k + 1)/6), {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 33; CoefficientList[Series[Exp[-Sum[x^k (1 + x^k)/(k (1 - x^k)^4), {k, 1, nmax}]], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, -Sum[Sum[d^2 (d + 1) (2 d + 1)/6, {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 33}]
CROSSREFS
Sequence in context: A370742 A176110 A262974 * A349220 A240723 A254154
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Sep 27 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 13 11:43 EDT 2024. Contains 374282 sequences. (Running on oeis4.)