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

A274327 Expansion of Product_{n>=1} (1 - x^(4*n))/(1 - x^n)^4 in powers of x.

Original entry on oeis.org

1, 4, 14, 40, 104, 248, 560, 1200, 2474, 4924, 9520, 17928, 33008, 59528, 105408, 183536, 314744, 532208, 888382, 1465208, 2389808, 3857456, 6166096, 9766576, 15336816, 23888844, 36924656, 56659296, 86341664, 130710104, 196640576, 294059872, 437232746, 646561792
Offset: 0

Views

Author

Seiichi Manyama, Nov 07 2016

Keywords

Examples

			G.f.: 1 + 4*x + 14*x^2 + 40*x^3 + 104*x^4 + 248*x^5 + 560*x^6 + ...
		

Crossrefs

Cf. Expansion of Product_{n>=1} (1 - x^(k*n))/(1 - x^n)^k in powers of x: A015128 (k=2), A273845 (k=3), this sequence (k=4), A277212 (k=5), A277283 (k=6), A160539 (k=7).
Cf. A083703.

Programs

  • Mathematica
    nmax = 50; CoefficientList[Series[Product[(1 - x^(4*k))/(1 - x^k)^4, {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Nov 10 2016 *)
    (QPochhammer[x^4, x^4]/QPochhammer[x, x]^4 + O[x]^40)[[3]] (* Vladimir Reshetnikov, Nov 20 2016 *)
  • PARI
    first(n)=my(x='x);Vec(prod(k=1,n,(1-x^(4*k))/(1-x^k)^4,1+O(x^(n+1)))) \\ Charles R Greathouse IV, Nov 07 2016

Formula

G.f.: Product_{n>=1} (1 - x^(4*n))/(1 - x^n)^4.
a(n) ~ 5*exp(Pi*sqrt(5*n/2)) / (2^(13/2) * n^(3/2)). - Vaclav Kotesovec, Nov 10 2016
a(0) = 1, a(n) = (4/n)*Sum_{k=1..n} A285895(k)*a(n-k) for n > 0. - Seiichi Manyama, Apr 29 2017

A080965 Expansion of eta(q^2)^12/(eta(q)^4eta(q^4)^5) 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
Offset: 0

Views

Author

Michael Somos, Feb 28 2003

Keywords

Comments

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

Crossrefs

a(n)=A080964(4n)=2*A072071(4n)-A072070(4n).
A083703(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([-3, 4, -8, 4]
          [1+irem(d, 4)]*d, d=divisors(j)) *a(n-j), j=1..n)/n)
        end:
    seq(a(n), n=0..100);  # Alois P. Heinz, Mar 05 2015
  • Mathematica
    a[n_] := a[n] = If[n==0, 1, Sum[DivisorSum[j, {-3, 4, -8, 4}[[1 + Mod[#, 4]]]*#&]*a[n-j], {j, 1, n}]/n]; Table[a[n], {n, 0, 100}] (* Jean-François Alcover, Nov 25 2015, after Alois P. Heinz *)
  • PARI
    a(n)=local(X); if(n<0,0,X=x+x*O(x^n); polcoeff(eta(X)^-4*eta(X^2)^12*eta(X^4)^-5,n))

Formula

G.f.: Product_{n>0} (1-x^(2n))^12/((1-x^n)^4(1-x^(4n))^5).

A280666 Expansion of eta(q)^6/eta(q^6) in powers of q.

Original entry on oeis.org

1, -6, 9, 10, -30, 0, 12, 36, 9, -60, -12, -54, 62, 120, 18, -72, -102, -54, -36, 156, 108, 48, -192, -108, 156, 78, 126, -206, -324, -72, 240, 324, 225, -168, -276, -180, 132, 264, 72, -144, -588, -198, 240, 804, 270, -288, -312, -324, 206, 486, 225, -528
Offset: 0

Views

Author

Seiichi Manyama, Jan 07 2017

Keywords

Crossrefs

Cf. A002448 (k=2), A005928 (k=3), A083703 (k=4), A109064 (k=5), this sequence (k=6), A160534 (k=7).

Programs

  • Maple
    with(numtheory):
    a:= proc(n) option remember; `if`(n=0, 1, add(add(d*
          `if`(irem(d, 6)=0, -5, -6), d=divisors(j))*a(n-j), j=1..n)/n)
        end:
    seq(a(n), n=0..70);  # Alois P. Heinz, Jan 07 2017
  • Mathematica
    QP = QPochhammer; QP[x]^6/QP[x^6] + O[x]^70 // CoefficientList[#, x]& (* Jean-François Alcover, Mar 25 2017 *)
  • PARI
    q='q+O('q^66); Vec( eta(q)^6/eta(q^6) ) \\ Joerg Arndt, Mar 25 2017

Formula

G.f.: Product_{n>0} (1-x^n)^6/(1-x^(6*n)).
Euler transform of period 6 sequence [ -6, -6, -6, -6, -6, -5, ...].

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