cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A115155 Expansion of (eta(q^3) * eta(q^5))^3 + (eta(q) * eta(q^15))^3 in powers of q.

Original entry on oeis.org

1, 1, -3, -3, 5, -3, 0, -7, 9, 5, 0, 9, 0, 0, -15, 5, -14, 9, -22, -15, 0, 0, 34, 21, 25, 0, -27, 0, 0, -15, 2, 33, 0, -14, 0, -27, 0, -22, 0, -35, 0, 0, 0, 0, 45, 34, -14, -15, 49, 25, 42, 0, -86, -27, 0, 0, 66, 0, 0, 45, -118, 2, 0, 13, 0, 0, 0, 42, -102, 0, 0
Offset: 1

Views

Author

Michael Somos, Jan 14 2006

Keywords

Comments

The terms of A136549 differ only in sign from this sequence. - Michael Somos, Jun 14 2023

Examples

			G.f. = q + q^2 - 3*q^3 - 3*q^4 + 5*q^5 - 3*q^6 - 7*q^8 + 9*q^9 + 5*q^10 +...
		

Crossrefs

Programs

  • Magma
    A := Basis( CuspForms( Gamma1(15), 3), 80); A[1] + A[2] - 3*A[3] - 3*A[4] + 5*A[5] - 3*A[6] - 7*A[8]; /* Michael Somos, Oct 13 2015 */
  • Mathematica
    a[ n_] := SeriesCoefficient[ q (QPochhammer[ q^3] QPochhammer[ q^5])^3 + q^2 (QPochhammer[ q] QPochhammer[ q^15])^3, {q, 0, n}]; (* Michael Somos, May 24 2013 *)
  • PARI
    {a(n) = my(A); if( n<1, 0, n--; A = x * O(x^n); polcoeff( (eta(x^3 + A) * eta(x^5 + A))^3 + x * (eta(x + A) * eta(x^15 + A))^3, n))};
    
  • Sage
    A = CuspForms( Gamma1(15), 3, prec=80) . basis(); A[0] + A[1] - 3*A[2] - 3*A[3] + 5*A[4] - 3*A[5] - 7*A[7]; # Michael Somos, May 28 2013
    

Formula

a(n) is multiplicative with a(3^e) = (-3)^e, a(5^e) = 5^e, a(p^e) = p^e if e even else 0 if p == 7, 11, 13, 14 (mod 15), a(p^e) = a(p) * a(p^(e-1)) - p^2 * a(p^(e-2)) if p == 1, 2, 4, 8 (mod 15).
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). - Michael Somos, Jun 23 2012
a(2^n) = A106853(n).
a(n) = A030220(n) + A136599(n). - Michael Somos, Oct 13 2015

A136599 Expansion of (eta(q) * eta(q^15))^3 in powers of q.

Original entry on oeis.org

1, -3, 0, 5, 0, 0, -7, 0, 0, 0, 9, 0, 0, 0, 0, -14, 9, 0, -15, 0, 0, 34, 0, 0, 0, -27, 0, 0, -15, 0, 33, 0, 0, 0, 0, 0, -22, 0, 0, 0, 0, 0, 0, 45, 0, -14, -15, 0, 25, 0, 0, -86, 0, 0, 0, 66, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 42, 0, 0, 0, -63, 0, 0, -75, 0, 0, 0, 0
Offset: 2

Views

Author

Michael Somos, Jan 11 2008

Keywords

Examples

			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 + ...
		

Crossrefs

Programs

  • Magma
    A := Basis( CuspForms( Gamma1(15), 3), 80); A[2] - 3*A[3] + 5*A[5] - 7*A[8]; /* Michael Somos, Oct 13 2015 */
  • Mathematica
    a[ n_] := SeriesCoefficient[ (QPochhammer[ q] QPochhammer[ q^15])^3, {q, 0, n}]; (* Michael Somos, Oct 13 2015 *)
  • 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))};
    

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
A115155(n) = a(n) + A030220(n). - Michael Somos, Oct 13 2015
Showing 1-2 of 2 results.