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.

A374076 Expansion of Product_{k>=1} 1 / (1 + x^(5*k-1)).

Original entry on oeis.org

1, 0, 0, 0, -1, 0, 0, 0, 1, -1, 0, 0, -1, 1, -1, 0, 1, -1, 2, -1, -1, 1, -2, 2, 0, -1, 2, -3, 2, 0, -2, 3, -3, 2, 1, -3, 4, -4, 2, 2, -4, 5, -5, 1, 3, -6, 7, -5, 1, 5, -8, 8, -6, -1, 8, -10, 11, -6, -3, 10, -14, 12, -5, -6, 15, -17, 14, -4, -10, 19, -21, 15, -1, -15, 25, -25
Offset: 0

Views

Author

Ilya Gutkovskiy, Jun 27 2024

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 75; CoefficientList[Series[Product[1/(1 + x^(5 k - 1)), {k, 1, nmax}], {x, 0, nmax}], x]
    a[0] = 1; a[n_] := a[n] = (1/n) Sum[DivisorSum[k, (-1)^(k/#) # &, Mod[#, 5] == 4 &] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 75}]

A374077 Expansion of Product_{k>=1} 1 / (1 + x^(5*k-2)).

Original entry on oeis.org

1, 0, 0, -1, 0, 0, 1, 0, -1, -1, 0, 1, 1, -1, -1, -1, 2, 1, 0, -2, -1, 1, 2, 0, -2, -2, 2, 2, 1, -3, -2, 1, 4, 1, -3, -4, 2, 4, 3, -5, -5, 0, 7, 4, -4, -8, 0, 7, 8, -5, -9, -4, 10, 9, -3, -13, -5, 9, 14, -3, -14, -10, 12, 16, 1, -19, -12, 10, 23, 1, -20, -20, 13, 26, 8, -26
Offset: 0

Views

Author

Ilya Gutkovskiy, Jun 27 2024

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 75; CoefficientList[Series[Product[1/(1 + x^(5 k - 2)), {k, 1, nmax}], {x, 0, nmax}], x]
    a[0] = 1; a[n_] := a[n] = (1/n) Sum[DivisorSum[k, (-1)^(k/#) # &, Mod[#, 5] == 3 &] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 75}]

A374079 Expansion of Product_{k>=1} 1 / (1 + x^(5*k-4)).

Original entry on oeis.org

1, -1, 1, -1, 1, -1, 0, 0, 0, 0, 0, -1, 2, -2, 2, -2, 1, 0, -1, 1, -1, 0, 2, -3, 4, -4, 3, -1, -1, 2, -3, 2, 1, -4, 6, -7, 7, -4, 0, 3, -5, 5, -2, -3, 8, -11, 12, -9, 3, 3, -8, 10, -7, 0, 8, -15, 19, -17, 9, 1, -10, 16, -15, 6, 7, -19, 28, -29, 20, -5, -11, 23, -26, 17, 1, -21
Offset: 0

Views

Author

Ilya Gutkovskiy, Jun 27 2024

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 75; CoefficientList[Series[Product[1/(1 + x^(5 k - 4)), {k, 1, nmax}], {x, 0, nmax}], x]
    a[0] = 1; a[n_] := a[n] = (1/n) Sum[DivisorSum[k, (-1)^(k/#) # &, Mod[#, 5] == 1 &] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 75}]
Showing 1-3 of 3 results.