OFFSET
0,21
COMMENTS
Number of partitions of n into distinct parts congruent to 1 mod 6.
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..10000
Vaclav Kotesovec, A method of finding the asymptotics of q-series based on the convolution of generating functions, arXiv:1509.08708 [math.CO], Sep 30 2015.
FORMULA
G.f.: Product_{k>=0} (1 + x^(6*k+1)).
a(n) ~ exp(Pi*sqrt(n)/(3*sqrt(2)))/(2*2^(5/12)*sqrt(3)*n^(3/4)) * (1 + (Pi/(144*sqrt(2)) - 9/(4*sqrt(2)*Pi)) / sqrt(n)). - Ilya Gutkovskiy, Jan 03 2017, extended by Vaclav Kotesovec, Jan 18 2017
EXAMPLE
a(32) = 3 because we have [31, 1], [25, 7] and [19, 13].
MATHEMATICA
nmax = 105; CoefficientList[Series[Product[(1 + x^(6 k + 1)), {k, 0, nmax}], {x, 0, nmax}], x]
nmax = 200; poly = ConstantArray[0, nmax + 1]; poly[[1]] = 1; poly[[2]] = 1; Do[If[Mod[k, 6] == 1, Do[poly[[j + 1]] += poly[[j - k + 1]], {j, nmax, k, -1}]; ], {k, 2, nmax}]; poly (* Vaclav Kotesovec, Jan 18 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 03 2017
STATUS
approved