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.

A316720 Expansion of Product_{k=1..8} (1+x^(2*k-1))/(1-x^(2*k)).

Original entry on oeis.org

1, 1, 1, 2, 3, 4, 5, 7, 10, 13, 16, 21, 28, 35, 43, 55, 70, 85, 103, 127, 156, 188, 224, 270, 326, 386, 454, 539, 638, 746, 869, 1016, 1186, 1372, 1581, 1827, 2108, 2415, 2758, 3156, 3605, 4094, 4639, 5261, 5956, 6715, 7553, 8499, 9552, 10694, 11950, 13357, 14908, 16589
Offset: 0

Views

Author

Seiichi Manyama, Jul 11 2018

Keywords

Crossrefs

Product_{k=1..b} (1+x^(2*k-1))/(1-x^(2*k)): A000012 (b=1), A004525(n+1) (b=2), A000933(n+5) (b=3), A089597 (b=4), A014670 (b=5), A316718 (b=6), A316719 (b=7), this sequence (b=8), A316721 (b=9), A316722 (b=10).
Cf. A316675.

Programs

  • PARI
    N=99; x='x+O('x^N); Vec(prod(k=1, 8, (1+x^(2*k-1))/(1-x^(2*k))))