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

A305105
G.f.: Sum_{k>=1} x^(2*k-1)/(1-x^(2*k-1)) * Product_{k>=1} (1+x^k)/(1-x^k).
4
0, 1, 3, 8, 17, 34, 64, 114, 195, 325, 526, 832, 1292, 1970, 2958, 4384, 6413, 9276, 13283, 18836, 26478, 36924, 51096, 70210, 95844, 130019, 175350, 235192, 313802, 416618, 550540, 724250, 948719, 1237732, 1608508, 2082600, 2686857, 3454590, 4427144, 5655652
OFFSET
0,3
COMMENTS
Convolution of A066897 and A000009.
Convolution of A067588 and A000041.
LINKS
FORMULA
a(n) ~ (2*gamma + log(16*n/Pi^2)) * exp(Pi*sqrt(n)) / (16*Pi*sqrt(n)), where gamma is the Euler-Mascheroni constant A001620.
MATHEMATICA
nmax = 50; CoefficientList[Series[Sum[x^(2*k-1)/(1-x^(2*k-1)), {k, 1, nmax}] * Product[(1+x^k)/(1-x^k), {k, 1, nmax}], {x, 0, nmax}], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, May 25 2018
STATUS
approved