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”).
%I #24 Mar 12 2021 22:24:46
%S 0,1,3,4,7,13,19,29,44,65,94,133,187,258,354,481,651,871,1154,1526,
%T 1998,2603,3376,4358,5594,7148,9103,11531,14560,18320,22972,28708,
%U 35757,44413,54990,67904,83626,102736,125890,153882,187694,228396,277336
%N Expansion of x * phi(x) * psi(x^14) / (f(-x) * f(-x^7)) in powers of x where phi(), psi(), f() are Ramanujan theta functions.
%C Ramanujan theta functions: f(q) (see A121373), phi(q) (A000122), psi(q) (A010054), chi(q) (A000700).
%H G. C. Greubel, <a href="/A193883/b193883.txt">Table of n, a(n) for n = 0..1000</a>
%H Michael Somos, <a href="/A010815/a010815.txt">Introduction to Ramanujan theta functions</a>
%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/RamanujanThetaFunctions.html">Ramanujan Theta Functions</a>
%F Expansion of chi(-x^2)^2 / (chi(-x)^3 * chi(-x^7) * chi(-x^14)^4 ) in powers of x where chi() is a Ramanujan theta function.
%F Expansion of q^(-5/12) * eta(q^2)^5 * eta(q^28)^2 / (eta(q)^3 * eta(q^4)^2 * eta(q^7) * eta(q^14)) in powers of q.
%F Euler transform of period 28 sequence [ 3, -2, 3, 0, 3, -2, 4, 0, 3, -2, 3, 0, 3, 0, 3, 0, 3, -2, 3, 0, 4, -2, 3, 0, 3, -2, 3, 0, ...].
%F a(n) = A102314(4*n + 2).
%F a(n) ~ exp(4*Pi*sqrt(n/21)) / (2^(5/2) * 21^(1/4) * n^(3/4)). - _Vaclav Kotesovec_, Nov 15 2017
%e G.f. = x + 3*x^2 + 4*x^3 + 7*x^4 + 13*x^5 + 19*x^6 + 29*x^7 + 44*x^8 + 65*x^9 + ...
%e G.f. = q^17 + 3*q^29 + 4*q^41 + 7*q^53 + 13*q^65 + 19*q^77 + 29*q^89 + 44*q^101 + ...
%t a[ n_] := SeriesCoefficient[ QPochhammer[ x, x^2] QPochhammer[ x^7, x^14], {x, 0, 4 n + 2}];
%t a[ n_] := SeriesCoefficient[ QPochhammer[ x^2, x^4]^2 / (QPochhammer[ x^7, x^14] QPochhammer[ x^14, x^28]^2 QPochhammer[ x, x^2]^3), {x, 0, n - 1}];
%t a[ n_] := SeriesCoefficient[ EllipticTheta[ 3, 0, x] EllipticTheta[ 2, 0, x^7] / (2 QPochhammer[ x] QPochhammer[ x^7]), {x, 0, n + 3/4}];
%o (PARI) {a(n) = my(A); if( n<1, 0, n--; A = x * O(x^n); polcoeff( eta(x^2 + A)^5 * eta(x^28 + A)^2 / (eta(x + A)^3 * eta(x^4 + A)^2 * eta(x^7 + A) * eta(x^14 + A)), n))};
%Y Cf. A102314.
%K nonn
%O 0,3
%A _Michael Somos_, Aug 07 2011