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.

A301547 Expansion of Product_{k>=1} 1/(1 - x^k)^(sigma_9(k)).

Original entry on oeis.org

1, 1, 514, 20198, 414696, 12465714, 373679122, 9181285000, 224372879810, 5583837482767, 132433701077938, 3028947042351535, 68425900639083569, 1518510622688185301, 32936878700790531296, 701684036762210944310, 14726705417058058788172, 304326729686784847885978
Offset: 0

Views

Author

Vaclav Kotesovec, Mar 23 2018

Keywords

Crossrefs

Cf. A006171 (m=0), A061256 (m=1), A275585 (m=2), A288391 (m=3), A301542 (m=4), A301543 (m=5), A301544 (m=6), A301545 (m=7), A301546 (m=8).

Programs

  • Maple
    with(numtheory):
    a:= proc(n) option remember; `if`(n=0, 1, add(add(d*
          sigma[9](d), d=divisors(j))*a(n-j), j=1..n)/n)
        end:
    seq(a(n), n=0..20);  # Alois P. Heinz, Oct 26 2018
  • Mathematica
    nmax = 30; CoefficientList[Series[Product[1/(1-x^k)^DivisorSigma[9, k], {k, 1, nmax}], {x, 0, nmax}], x]

Formula

a(n) ~ exp((11*Pi)^(10/11) * (Zeta(11)/3)^(1/11) * n^(10/11) / (2^(3/11) * 5^(10/11)) - Zeta'(-9)/2) * (5*Zeta(11)/(3*Pi))^(131/2904) / (2^(131/968) * 11^(1583/2904) * n^(1583/2904)).
G.f.: exp(Sum_{k>=1} sigma_10(k)*x^k/(k*(1 - x^k))). - Ilya Gutkovskiy, Oct 26 2018

A321042 a(n) = [x^n] Product_{k>=1} (1 + x^k)^sigma_n(k).

Original entry on oeis.org

1, 1, 5, 37, 491, 12763, 690756, 70250881, 13805853214, 5567873958982, 4386114219458332, 6711687353310594027, 21048327399504558833175, 131214860796100022696745520, 1603892616451767287785208156624, 40296605442098101265893075903063822, 2031406440758379976992019043333960734724
Offset: 0

Views

Author

Ilya Gutkovskiy, Oct 26 2018

Keywords

Crossrefs

Programs

  • Mathematica
    Table[SeriesCoefficient[Product[(1 + x^k)^DivisorSigma[n, k], {k, 1, n}], {x, 0, n}], {n, 0, 16}]
    Table[SeriesCoefficient[Product[Product[(1 + x^(i j))^(j^n), {j, 1, n}], {i, 1, n}], {x, 0, n}], {n, 0, 16}]
    Table[SeriesCoefficient[Exp[Sum[DivisorSigma[n + 1, k] x^k/(k (1 - x^(2 k))), {k, 1, n}]], {x, 0, n}], {n, 0, 16}]

Formula

a(n) = [x^n] Product_{i>=1, j>=1} (1 + x^(i*j))^(j^n).
a(n) = [x^n] exp(Sum_{k>=1} sigma_(n+1)(k)*x^k/(k*(1 - x^(2*k)))).

A321877 Square array A(n,k), n>=0, k>=0, read by antidiagonals, where column k is the expansion of Product_{j>=1} (1 + x^j)^sigma_k(j).

Original entry on oeis.org

1, 1, 1, 1, 1, 2, 1, 1, 3, 4, 1, 1, 5, 7, 6, 1, 1, 9, 15, 14, 10, 1, 1, 17, 37, 41, 28, 17, 1, 1, 33, 99, 137, 107, 58, 25, 1, 1, 65, 277, 491, 487, 286, 106, 38, 1, 1, 129, 795, 1829, 2429, 1749, 700, 201, 59, 1, 1, 257, 2317, 6971, 12763, 12056, 5901, 1735, 372, 86
Offset: 0

Views

Author

Ilya Gutkovskiy, Nov 20 2018

Keywords

Examples

			Square array begins:
   1,   1,    1,    1,     1,      1,  ...
   1,   1,    1,    1,     1,      1,  ...
   2,   3,    5,    9,    17,     33,  ...
   4,   7,   15,   37,    99,    277,  ...
   6,  14,   41,  137,   491,   1829,  ...
  10,  28,  107,  487,  2429,  12763,  ...
		

Crossrefs

Main diagonal gives A321042.
Cf. A321876.

Programs

  • Mathematica
    Table[Function[k, SeriesCoefficient[Product[(1 + x^j)^DivisorSigma[k, j], {j, 1, n}], {x, 0, n}]][i - n], {i, 0, 10}, {n, 0, i}] // Flatten
    Table[Function[k, SeriesCoefficient[Exp[Sum[DivisorSigma[k + 1, j] x^j/(j (1 - x^(2 j))), {j, 1, n}]], {x, 0, n}]][i - n], {i, 0, 10}, {n, 0, i}] // Flatten

Formula

G.f. of column k: Product_{i>=1, j>=1} (1 + x^(i*j))^(j^k).
G.f. of column k: exp(Sum_{j>=1} sigma_(k+1)(j)*x^j/(j*(1 - x^(2*j)))).
Showing 1-3 of 3 results.