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.

A373031 Expansion of Sum_{k>=1} (-1)^(k+1) * k^2 * x^(k^2) / (1 - x^k).

Original entry on oeis.org

1, 1, 1, -3, 1, -3, 1, -3, 10, -3, 1, 6, 1, -3, 10, -19, 1, 6, 1, -19, 10, -3, 1, -10, 26, -3, 10, -19, 1, 31, 1, -19, 10, -3, 26, -46, 1, -3, 10, 6, 1, -30, 1, -19, 35, -3, 1, -46, 50, 22, 10, -19, 1, -30, 26, 30, 10, -3, 1, -21, 1, -3, 59, -83, 26, -30, 1, -19, 10, 71
Offset: 1

Views

Author

Ilya Gutkovskiy, May 20 2024

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 70; CoefficientList[Series[Sum[(-1)^(k + 1) k^2 x^(k^2)/(1 - x^k), {k, 1, nmax}], {x, 0, nmax}], x] // Rest

Formula

a(n) = Sum_{d|n, d <= sqrt(n)} (-1)^(d+1) * d^2.

A373032 Expansion of Sum_{k>=1} (-1)^(k+1) * k^2 * x^(k*(k+1)) / (1 - x^k).

Original entry on oeis.org

0, 1, 1, 1, 1, -3, 1, -3, 1, -3, 1, 6, 1, -3, 10, -3, 1, 6, 1, -19, 10, -3, 1, -10, 1, -3, 10, -19, 1, 31, 1, -19, 10, -3, 26, -10, 1, -3, 10, 6, 1, -30, 1, -19, 35, -3, 1, -46, 1, 22, 10, -19, 1, -30, 26, 30, 10, -3, 1, -21, 1, -3, 59, -19, 26, -30, 1, -19, 10, 71
Offset: 1

Views

Author

Ilya Gutkovskiy, May 20 2024

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 70; CoefficientList[Series[Sum[(-1)^(k + 1) k^2 x^(k (k + 1))/(1 - x^k), {k, 1, nmax}], {x, 0, nmax}], x] // Rest

Formula

a(n) = Sum_{d|n, d < sqrt(n)} (-1)^(d+1) * d^2.
Showing 1-2 of 2 results.