OFFSET
0,3
COMMENTS
Let A(x) = Sum_{k >= 1} x^(2*k-1)/(1 - x^(2*k-1)) * Product_{k >= 1} (1 + x^k)/(1 - x^k). Then A(x) = Sum_{k >= 1} x^(2*k-1)/(1 - x^(2*k-1)) * Product_{k >= 1} (1 + x^k)/(1 + x^k - 2*x^k) == Sum_{k >= 1} x^(2*k-1)/(1 - x^(2*k-1)) (mod 2). It follows from the comment in A001227 by Juri-Stepan Gerasimov, dated Jul 17 2016, that a(n) is odd iff n is a square or twice a square. - Peter Bala, Jan 10 2025
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..10000
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,easy
AUTHOR
Vaclav Kotesovec, May 25 2018
STATUS
approved