OFFSET
0,5
COMMENTS
Ramanujan theta functions: f(q) (see A121373), phi(q) (A000122), psi(q) (A010054), chi(q) (A000700).
Also number of partitions of n into parts not divisible by 3 with every part repeated at least twice. Conjectured by R. H. Hardin, Jun 06 2009, proved by Max Alekseyev, Jun 06 2009.
The number of partitions of n into parts not divisible by 3 with every part repeated at least twice has g.f. f(x) = Product_{k>=1} (1 + x^(2k) + x^(3*k) + ...) = Product_{k>=1} (1/(1-x^k) - x^k) = Product_{k>=1} (1 - x^k + x^(2*k)) / (1 - x^k). Excluding parts divisible by 3, we have: f(x) / f(x^3) = Product_{k>=1} (1 - x^k + x^(2*k)) * (1 - x^(3*k)) / (1 - x^k) / (1 - x^(3*k) + x^(6*k)) = Product_{k>=1} (1 - x^k + x^(2*k)) * (1 + x^k + x^(2*k)) / (1 - x^(3*k) + x^(6*k)) = Product_{k>=1} (1 + x^(2*k) + x^(4*k)) / (1 - x^(3*k) + x^(6*k)), which matches the definition of this sequence. - Max Alekseyev, Jun 06 2009
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..10000 (first 903 terms from R. H. Hardin)
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.
Michael Somos, Introduction to Ramanujan theta functions
Eric Weisstein's World of Mathematics, Ramanujan Theta Functions
FORMULA
Expansion of q^(1/12) * eta(q^6)^2 * eta(q^9) / ( eta(q^2) * eta(q^3) * eta(q^18)) in powers of q.
Euler transform of period 18 sequence [ 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, ...].
G.f.: Product_{k>0} (1 + x^(2*k) + x^(4*k)) / (1 - x^(3*k) + x^(6*k)).
G.f.: Sum_{k>=0} Product_{0<i<=k} x^(4*i - 2) * (1 - x^(6*i - 3)) / ( (1 - x^(2*i - 1)) * (1 - x^(4*i - 2)) * (1 - x^(4*i))).
a(n) ~ exp(2*Pi*sqrt(2*n/3)/3) / (2^(3/4) * 3^(5/4) * n^(3/4)). - Vaclav Kotesovec, Oct 14 2015
EXAMPLE
G.f. = 1 + x^2 + x^3 + 2*x^4 + x^5 + 3*x^6 + 2*x^7 + 5*x^8 + 3*x^9 + ...
G.f. = 1/q + q^23 + q^35 + 2*q^47 + q^59 + 3*q^71 + 2*q^83 + 5*q^95 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ EllipticTheta[ 2, 0, x^(3/2)] / (2 x^(3/8) QPochhammer[ -x^9, x^9] QPochhammer[ x^2]), {x, 0, n}]; (* Michael Somos, Aug 25 2015 *)
nmax=60; CoefficientList[Series[Product[(1-x^(6*k))^2 * (1-x^(9*k)) / ( (1-x^(2*k)) * (1-x^(3*k)) * (1-x^(18*k))) , {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Oct 14 2015 *)
PROG
(PARI) {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x^6 + A)^2 * eta(x^9 + A )/ (eta(x^2+A) * eta(x^3 + A) * eta(x^18 + A)), n))};
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Somos, Aug 09 2007
EXTENSIONS
Edited by N. J. A. Sloane, Jun 07 2009
STATUS
approved