OFFSET
2,2
FORMULA
Euler transform of period 15 sequence [ -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -6, ...].
G.f. is a period 1 Fourier series which satisfies f(-1 / (15 t)) = 15^(3/2) (t/i)^3 f(t) where q = exp(2 Pi i t).
a(n) nonzero or n=0 if and only if n is in A028955.
G.f.: x^2 * (Product_{k>0} (1 - x^k) * (1 - x^(15*k)))^3.
a(3*n) = -3 * A030220(n). a(3*n + 1) = 0. - Michael Somos, Oct 13 2015
EXAMPLE
G.f. = q^2 - 3*q^3 + 5*q^5 - 7*q^8 + 9*q^12 - 14*q^17 + 9*q^18 - 15*q^20 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ (QPochhammer[ q] QPochhammer[ q^15])^3, {q, 0, n}]; (* Michael Somos, Oct 13 2015 *)
PROG
(PARI) {a(n) = my(A); if( n<2, 0, n -= 2; A = x * O(x^n); polcoeff( (eta(x + A) * eta(x^15 + A))^3, n))};
(Magma) A := Basis( CuspForms( Gamma1(15), 3), 80); A[2] - 3*A[3] + 5*A[5] - 7*A[8]; /* Michael Somos, Oct 13 2015 */
CROSSREFS
KEYWORD
sign
AUTHOR
Michael Somos, Jan 11 2008
STATUS
approved
