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

A288414 Expansion of Product_{k>=1} (1 + x^k)^(sigma_2(k)).

Original entry on oeis.org

1, 1, 5, 15, 41, 107, 286, 700, 1735, 4162, 9803, 22673, 51822, 116376, 258548, 567197, 1230763, 2642958, 5622616, 11850537, 24769248, 51353095, 105662389, 215838649, 437890022, 882562763, 1767741732, 3519599996, 6967592060, 13717874719, 26865949075
Offset: 0

Views

Author

Seiichi Manyama, Jun 08 2017

Keywords

Crossrefs

Product_{k>=1} (1 + x^k)^sigma_m(k): A107742 (m=0), A192065 (m=1), this sequence (m=2), A288415 (m=3).

Programs

  • Magma
    m:=40; R:=PowerSeriesRing(Rationals(), m); Coefficients(R! ( (&*[(1+q^k)^DivisorSigma(2,k): k in [1..m]]) )); // G. C. Greubel, Oct 30 2018
  • Maple
    with(numtheory): seq(coeff(series(mul((1+x^k)^(sigma[2](k)),k=1..n),x,n+1), x, n), n = 0 .. 30); # Muniru A Asiru, Oct 31 2018
  • Mathematica
    nmax = 40; CoefficientList[Series[Product[(1+x^k)^DivisorSigma[2, k], {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Jun 09 2017 *)
  • PARI
    m=40; x='x+O('x^m); Vec(prod(k=1, m, (1+x^k)^sigma(k,2))) \\ G. C. Greubel, Oct 30 2018
    

Formula

a(0) = 1, a(n) = (1/n)*Sum_{k=1..n} A288419(k)*a(n-k) for n > 0.
a(n) ~ exp(2^(5/4) * (7*Zeta(3))^(1/4) * Pi * n^(3/4) / (3^(5/4) * 5^(1/4)) - 5^(1/4) * Pi * n^(1/4) / (2^(13/4) * 3^(7/4) * (7*Zeta(3))^(1/4))) * (7*Zeta(3))^(1/8) / (2^(15/8) * 15^(1/8) * n^(5/8)). - Vaclav Kotesovec, Mar 23 2018
G.f.: Product_{i>=1, j>=1} (1 + x^(i*j))^(j^2). - Ilya Gutkovskiy, Aug 26 2018

A288098 Convolution inverse of A006171.

Original entry on oeis.org

1, -1, -2, 0, 0, 4, 1, 3, 0, -5, 0, -7, -6, -4, 7, 0, 6, 9, 11, 10, -2, 13, -13, -10, -17, -20, -25, 0, -11, -11, -2, 11, 41, 27, 41, 17, 58, 12, 27, -21, -2, -36, -67, -52, -59, -95, -75, -20, -89, 35, 0, 62, 41, 142, 97, 172, 63, 154, 148, 85, 110, -36, -17, -156
Offset: 0

Views

Author

Seiichi Manyama, Jun 05 2017

Keywords

Crossrefs

Product_{k>=1} (1 - x^k)^sigma_m(k): this sequence (m=0), A288385 (m=1), A288389 (m=2), A288392 (m=3).

Programs

  • Mathematica
    nmax = 50; CoefficientList[Series[Product[(1 - x^(i*j)), {i, 1, nmax}, {j, 1, nmax/i}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 28 2018 *)
    nmax = 50; CoefficientList[Series[Product[(1 - x^k)^DivisorSigma[0, k], {k, 1, nmax}], {x, 0, nmax}], x]  (* Vaclav Kotesovec, Aug 28 2018 *)
    nmax = 50; s = 1 - x; Do[s *= Sum[Binomial[DivisorSigma[0, k], j]*(-1)^j*x^(j*k), {j, 0, nmax/k}]; s = Expand[s]; s = Take[s, Min[nmax + 1, Exponent[s, x] + 1, Length[s]]];, {k, 2, nmax}]; Take[CoefficientList[s, x], nmax] (* Vaclav Kotesovec, Aug 28 2018 *)

Formula

G.f.: Product_{n>=1} E(q^n) where E(q) = Product_{n>=1} (1-q^n).
a(0) = 1, a(n) = -(1/n)*Sum_{k=1..n} A060640(k)*a(n-k) for n > 0.
G.f.: exp(-Sum_{k>=1} sigma(k)*x^k/(k*(1 - x^k))). - Ilya Gutkovskiy, Aug 26 2018

A288385 Expansion of Product_{k>=1} (1 - x^k)^sigma(k).

Original entry on oeis.org

1, -1, -3, -1, 0, 10, 8, 12, 1, -28, -29, -67, -51, -28, 79, 163, 256, 343, 273, 136, -351, -649, -1446, -1751, -1889, -1453, -124, 1924, 5138, 7608, 10636, 10903, 10054, 3143, -5799, -20521, -37217, -53057, -65661, -66086, -54430, -15648, 37179, 122732
Offset: 0

Views

Author

Seiichi Manyama, Jun 08 2017

Keywords

Crossrefs

Product_{k>=1} (1 - x^k)^sigma_m(k): A288098 (m=0), this sequence (m=1), A288389 (m=2), A288392 (m=3).

Programs

  • Maple
    with(numtheory):
    b:= proc(n) option remember; `if`(n=0, 1, add(add(
          d*sigma(d), d=divisors(j))*b(n-j), j=1..n)/n)
        end:
    a:= proc(n) option remember; `if`(n=0, 1,
          -add(b(n-i)*a(i), i=0..n-1))
        end:
    seq(a(n), n=0..45);  # Alois P. Heinz, Jun 08 2017
  • Mathematica
    b[n_] := b[n] = If[n == 0, 1, Sum[Sum[d*DivisorSigma[1, d], {d,
         Divisors[j]}]*b[n - j], {j, 1, n}]/n];
    a[n_] := a[n] = If[n == 0, 1, -Sum[b[n - i]*a[i], {i, 0, n - 1}]];
    Table[a[n], {n, 0, 45}] (* Jean-François Alcover, Mar 02 2022, after Alois P. Heinz *)

Formula

Convolution inverse of A061256.
a(0) = 1, a(n) = -(1/n)*Sum_{k=1..n} A001001(k)*a(n-k) for n > 0.
G.f.: exp(-Sum_{k>=1} sigma_2(k)*x^k/(k*(1 - x^k))). - Ilya Gutkovskiy, Oct 29 2018

A288392 Expansion of Product_{k>=1} (1 - x^k)^(sigma_3(k)).

Original entry on oeis.org

1, -1, -9, -19, -9, 163, 573, 1127, 109, -7198, -27159, -58611, -50378, 157532, 892986, 2431694, 4040909, 1605559, -16109148, -68261139, -167737209, -263590908, -109589779, 934422499, 3976197701, 9922490735, 16765911071, 13022553978, -33008232762
Offset: 0

Views

Author

Seiichi Manyama, Jun 08 2017

Keywords

Crossrefs

Product_{k>=1} (1 - x^k)^sigma_m(k): A288098 (m=0), A288385 (m=1), A288389 (m=2), this sequence (m=3).

Programs

  • Magma
    m:=30; R:=PowerSeriesRing(Rationals(), m); Coefficients(R! ( (&*[(1-q^k)^DivisorSigma(3,k): k in [1..m]]) )); // G. C. Greubel, Oct 30 2018
  • Maple
    with(numtheory):
    b:= proc(n) option remember; `if`(n=0, 1, add(add(
          d*sigma[3](d), d=divisors(j))*b(n-j), j=1..n)/n)
        end:
    a:= proc(n) option remember; `if`(n=0, 1,
          -add(b(n-i)*a(i), i=0..n-1))
        end:
    seq(a(n), n=0..30);  # Alois P. Heinz, Jun 08 2017
  • Mathematica
    nmax = 30; CoefficientList[Series[Product[(1-x^k)^DivisorSigma[3, k], {k, 1, nmax}], {x, 0, nmax}], x] (* G. C. Greubel, Oct 30 2018 *)
  • PARI
    m=30; x='x+O('x^m); Vec(prod(k=1, m, (1-x^k)^sigma(k,3))) \\ G. C. Greubel, Oct 30 2018
    

Formula

Convolution inverse of A288391.
a(0) = 1, a(n) = -(1/n)*Sum_{k=1..n} A027848(k)*a(n-k) for n > 0.
G.f.: exp(-Sum_{k>=1} sigma_4(k)*x^k/(k*(1 - x^k))). - Ilya Gutkovskiy, Oct 29 2018

A320972 Expansion of Product_{k>=1} ((1 - x^k)/(1 + x^k))^(sigma_2(k)).

Original entry on oeis.org

1, -2, -8, -2, 30, 110, 92, -182, -976, -2064, -1488, 3714, 17618, 35814, 37680, -25278, -216910, -541538, -819268, -480334, 1441634, 5924858, 12518720, 16883366, 7972200, -32275008, -120780700, -250726492, -349220282, -229745138, 424373412, 1958370998, 4418456156
Offset: 0

Views

Author

Seiichi Manyama, Oct 25 2018

Keywords

Crossrefs

Convolution inverse of A301556.
Product_{k>=1} ((1 - x^k)/(1 + x^k))^(sigma_b(k)): A320908 (b=0), A320971 (b=1), this sequence (b=2).

Programs

  • PARI
    N=99; x='x+O('x^N); Vec(prod(k=1, N, ((1-x^k)/(1+x^k))^sigma(k, 2)))
Showing 1-5 of 5 results.