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.

A209457 Expansion of x^7*Product_{i>=0} ((1 + x^(2*i - 1))*(1 - x^(4*i - 5))).

Original entry on oeis.org

1, 1, -1, -1, 0, 0, -1, -1, 1, 2, 0, -2, 0, 2, 0, -3, 0, 4, 1, -4, -2, 4, 2, -5, -3, 6, 5, -5, -6, 5, 6, -7, -8, 7, 11, -5, -12, 5, 13, -6, -16, 5, 19, -3, -21, 2, 23, -2, -26, 0, 30, 4, -32, -6, 34, 7, -39, -12, 43, 18
Offset: 0

Views

Author

Roger L. Bagula, Mar 09 2012

Keywords

Comments

Expansion of x^7 QPochhammer[1/x^5, x^4] QPochhammer[-(1/x), x^2].

Examples

			Series[x^7 QPochhammer[1/x^5, x^4] QPochhammer[-(1/x), x^2], {x, 0, 10}] = 1+x-x^2-x^3-x^6-x^7+x^8+2*x^9+O[x]^11.
		

References

  • George E. Andrews, Number Theory, Dover Publications, N.Y., 1971, 164-165.
  • Samuel I. Goldberg, Curvature and Homology, Dover, New York, 1998, 144.

Crossrefs

Cf. A207944.

Programs

  • Mathematica
    Table[SeriesCoefficient[Series[x^7*Product[(1 + x^(2*i - 1))*(1 - x^(4*i - 5)), {i, 0, Infinity}], {x, 0, 100}], n], {n, 0, 100}]

A208150 Expansion of (1 + 2*Product_{i>=1} (1 + x^(8*i - 1)))/(-1 + Product_{i>=1} (1 - x^(8*i - 1))).

Original entry on oeis.org

-2, 3, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, -4, 3, 0, 0, 0, 0, 0, 0, -3, -3, 0, 0, 0, 0, 0, -4, 2, 3, 0, 0, 0, 0, 0, -3, -9, -3, 0, 0, 0, 0, -4, 1, 5, 3, 0, 0, 0, 0, 1, -15, -9, -3, 0, 0, 0, -4, 0, 6, 5, 3, 0, 0, 0, 5, -20, -21, -12, -3, 0, 0, -4, -1, 16
Offset: 0

Views

Author

Roger L. Bagula, Feb 23 2012

Keywords

Examples

			-3/x^7 - 2 + 3*x -3*x^8 - 4*x^15 + 3*x^16 - 3*x^23 - 3*x^24 - 4*x^30 + ...
		

Crossrefs

Programs

  • Mathematica
    Table[SeriesCoefficient[
      Series[(1 + 2*Product[1 + x^(8*i - 1), {i, 1, Infinity}])/(-1 +
          Product[(1 - x^(8*i - 1)), {i, 1, Infinity}]), {x, 0, 100}],
      n], {n, 0, 100}]
Showing 1-2 of 2 results.