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

A333181
G.f.: Sum_{k>=1} (k * x^(k*(k+1)) * Product_{j=1..k} (1 + x^j)).
3
0, 0, 1, 1, 0, 0, 2, 2, 2, 2, 0, 0, 3, 3, 3, 6, 3, 3, 3, 0, 4, 4, 4, 8, 8, 8, 8, 8, 4, 4, 9, 5, 5, 10, 10, 15, 15, 15, 15, 15, 15, 10, 16, 11, 11, 17, 12, 18, 24, 24, 24, 30, 30, 30, 30, 24, 31, 31, 25, 26, 26, 27, 34, 41, 35, 42, 49, 49, 56, 56, 56, 56, 64
OFFSET
0,7
LINKS
FORMULA
a(n) ~ c * A333198^sqrt(n), where c = 0.2895947615240435716456...
Limit_{n->infinity} A333180(n) / a(n) = A060006 = (1/2 + sqrt(23/3)/6)^(1/3) + (1/2 - sqrt(23/3)/6)^(1/3) = 1.32471795724474602596090885...
MATHEMATICA
nmax = 100; CoefficientList[Series[Sum[n*x^(n*(n+1))*Product[1+x^k, {k, 1, n}], {n, 0, Sqrt[nmax]}], {x, 0, nmax}], x]
nmax = 100; p = 1; s = 0; Do[p = Expand[p*(1 + x^k)*x^(2*k)]; p = Take[p, Min[nmax + 1, Exponent[p, x] + 1, Length[p]]]; s += k*p; , {k, 1, Sqrt[nmax]}]; Take[CoefficientList[s, x], nmax + 1]
CROSSREFS
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Mar 10 2020
STATUS
approved