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-3 of 3 results.

A083703 Expansion of eta(q)^4/eta(q^4) in powers of q.

Original entry on oeis.org

1, -4, 2, 8, -4, -8, -8, 16, 6, -12, 8, 8, -8, -24, 0, 16, 12, -16, 10, 24, -8, -16, -24, 16, 8, -28, 8, 32, -16, -8, 0, 32, 6, -32, 16, 16, -12, -40, -24, 16, 24, -16, 16, 40, -8, -40, 0, 32, 24, -36, 10, 16, -24, -24, -32, 48, 0, -32, 24, 24, -16, -40, 0, 48, 12, -16, 16, 56, -16, -32, -48, 16, 30, -64, 8, 40, -24
Offset: 0

Views

Author

Michael Somos, May 04 2003

Keywords

Comments

Euler transform of period 4 sequence [ -4,-4,-4,-3,...].

Crossrefs

A080965(n)=(-1)^n a(n). a(2n)=0 iff n in A004215 (checked up to n=343).
a(2n)=0 iff A005875(n)=0.

Programs

  • Maple
    with(numtheory):
    a:= proc(n) option remember; `if`(n=0, 1, add(add(d*
          `if`(irem(d, 4)=0, -3, -4), d=divisors(j))*a(n-j), j=1..n)/n)
        end:
    seq(a(n), n=0..80);  # Alois P. Heinz, Jan 07 2017
  • Mathematica
    CoefficientList[QPochhammer[x]^4/QPochhammer[x^4] + O[x]^80, x] (* Jean-François Alcover, Sep 19 2016 *)
  • PARI
    a(n)=if(n<0,0,X=x+x*O(x^n); polcoeff(eta(X)^4/eta(X^4),n))

Formula

G.f.: Product_{n>0} (1-x^n)^4/(1-x^(4n)).
a(0) = 1, a(n) = -(4/n)*Sum_{k=1..n} A285895(k)*a(n-k) for n > 0. - Seiichi Manyama, Apr 29 2017

A080964 Euler transform of period-16 sequence [2,-3,2,1,2,-3,2,-6,2,-3,2,1,2,-3,2,-3,...].

Original entry on oeis.org

1, 2, 0, 0, 4, 4, 0, 0, 2, -2, 0, 0, -8, -4, 0, 0, -4, 0, 0, 0, 8, -8, 0, 0, -8, -2, 0, 0, -16, 4, 0, 0, 6, -8, 0, 0, 12, 4, 0, 0, 8, 8, 0, 0, -8, 4, 0, 0, -8, 2, 0, 0, 24, -4, 0, 0, 0, 8, 0, 0, -16, 4, 0, 0, 12, 8, 0, 0, 16, 0, 0, 0, 10, -8, 0, 0, -24, 0, 0, 0, -8, -6, 0, 0, 16, 8, 0, 0, -24, -8, 0, 0, -16, -8, 0, 0, 8, 0, 0
Offset: 0

Views

Author

Michael Somos, Feb 28 2003

Keywords

Programs

  • Mathematica
    eta[q_] := q^(1/24)*QPochhammer[q]; a:= CoefficientList[Series[eta[q^2]^5 *eta[q^8]^7/(eta[q]^2*eta[q^4]^4*eta[q^16]^3), {q, 0, 60}], q]; Table[a[[n]], {n, 1, 70}] (* G. C. Greubel, Jul 02 2018 *)
  • PARI
    a(n)=local(X); if(n<0,0,X=x+x*O(x^n); polcoeff(eta(X)^-2*eta(X^2)^5*eta(X^4)^-4*eta(X^8)^7*eta(X^16)^-3,n))

Formula

a(4*n+2) = a(4*n+3) = 0.
a(n) = 2*A072071(n) - A072070(n).
a(4*n) = A080965(n).
a(4*n+1) = 2*A080966(n).
Expansion of eta(q^2)^5*eta(q^8)^7/(eta(q)^2*eta(q^4)^4*eta(q^16)^3) in powers of q. - G. C. Greubel, Jul 02 2018

A319078 Expansion of phi(-q) * phi(q)^2 in powers of q where phi() is a Ramanujan theta function.

Original entry on oeis.org

1, 2, -4, -8, 6, 8, -8, 0, 12, 10, -8, -24, 8, 8, -16, 0, 6, 16, -12, -24, 24, 16, -8, 0, 24, 10, -24, -32, 0, 24, -16, 0, 12, 16, -16, -48, 30, 8, -24, 0, 24, 32, -16, -24, 24, 24, -16, 0, 8, 18, -28, -48, 24, 24, -32, 0, 48, 16, -8, -72, 0, 24, -32, 0, 6, 32
Offset: 0

Views

Author

Michael Somos, Sep 09 2018

Keywords

Comments

Ramanujan theta functions: f(q) (see A121373), phi(q) (A000122), psi(q) (A010054), chi(q) (A000700).

Examples

			G.f. = 1 + 2*x - 4*x^2 - 8*x^3 + 6*x^4 + 8*x^5 - 8*x^6 + 12*x^8 + ...
		

Crossrefs

Programs

  • Magma
    A := Basis( ModularForms( Gamma0(16), 3/2), 66); A[1] + 2*A[2] - 4*A[3] - 8*A[4];
  • Mathematica
    a[ n_] := SeriesCoefficient[ EllipticTheta[ 4, 0, q] EllipticTheta[ 3, 0, q]^2, {q, 0, n}];
    a[ n_] := SeriesCoefficient[ EllipticTheta[ 3, 0, q] EllipticTheta[ 4, 0, q^2]^2, {q, 0, n}];
  • PARI
    {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x^2 + A)^9 / (eta(x + A)^2 * eta(x^4 + A)^4), n))};
    

Formula

Expansion of eta(q^2)^9 / (eta(q)^2 * eta(q^4)^4) in powers of q.
Expansion of phi(q) * phi(-q^2)^2 = phi(-q^2)^4 / phi(-q) in powers of q.
Euler transform of period 4 sequence [2, -7, 2, -3, ...].
G.f. is a period 1 Fourier series which satisfies f(-1 / (16 t)) = 2^(11/2) (t/i)^(3/2) g(t) where q = exp(2 Pi i t) and g() is the g.f. for A045834.
G.f. Product_{k>0} (1 - x^k)^3 * (1 + x^k)^5 / (1 + x^(2*k))^4.
a(n) = (-1)^n * A212885(n) = A083703(2*n) = A080965(2*n).
a(4*n) = a(n) * -A132429(n + 2) where A132429 is a period 4 sequence.
a(4*n) = A005875(n). a(4*n + 1) = 2 * A045834(n). a(4*n + 2) = -4 * A045828(n).
a(8*n) = A004015(n). a(8*n + 1) = 2 * A213022(n). a(8*n + 2) = -4 * A213625(n). a(8*n + 3) = -8 * A008443(n). a(8*n + 4) = A005887(n). a(8*n + 5) = 2 * A004024(n). a(8*n + 6) = -8 * A213624(n). a(8*n + 7) = 0.
Showing 1-3 of 3 results.