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.

A300188 a(n) = n! * [x^n] Product_{k>=1} 1/(1 + x^k)^(n/k).

Original entry on oeis.org

1, -1, 4, -39, 536, -9115, 185904, -4461877, 123647488, -3886461081, 136538590400, -5300491027711, 225313697972736, -10409021924850211, 519298241645107456, -27824560148201248125, 1593597443825288904704, -97153909607626767338353, 6281720886474120790582272
Offset: 0

Views

Author

Ilya Gutkovskiy, Feb 28 2018

Keywords

Examples

			The table of coefficients of x^k in expansion of e.g.f. Product_{k>=1} 1/(1 + x^k)^(n/k) begins:
n = 0: (1),  0,   0,     0,     0,       0,        0,  ...
n = 1:  1, (-1),  1,    -5,    23,    -119,      619,  ...
n = 2:  1,  -2,  (4),  -16,    92,    -568,     3856,  ...
n = 3:  1,  -3,   9,  (-39),  243,   -1737,    13671,  ...
n = 4:  1,  -4,  16,   -80,  (536),  -4256,    37504,  ...
n = 5:  1,  -5,  25,  -145,  1055,  (-9115),   88075,  ...
n = 6:  1,  -6,  36,  -240,  1908,  -17784,  (185904), ...
		

Crossrefs

Programs

  • Mathematica
    Table[n! SeriesCoefficient[Product[1/(1 + x^k)^(n/k), {k, 1, n}], {x, 0, n}], {n, 0, 18}]

Formula

a(n) = n! * [x^n] exp(-n*Sum_{k>=1} A048272(k)*x^k/k).
a(n) ~ (-1)^n * c * d^n * n^n, where d = 1.3587950730244927060955... and c = 0.6449711831436950784... - Vaclav Kotesovec, Sep 08 2018

A319177 a(n) = n! * [x^n] Product_{k>=1} (1 + x^k/k)^n.

Original entry on oeis.org

1, 1, 4, 39, 500, 7990, 156684, 3640392, 97543088, 2960758800, 100428661440, 3764849536800, 154567280328768, 6897265807262064, 332386213584653760, 17204016957686536320, 951852354201532742400, 56059949872552858763520, 3501729575599545174352896, 231227806715994322631352960
Offset: 0

Views

Author

Ilya Gutkovskiy, Sep 12 2018

Keywords

Crossrefs

Programs

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

Formula

a(n) = n! * [x^n] exp(n*Sum_{k>=1} Sum_{j>=1} (-1)^(k+1)*x^(j*k)/(k*j^k)).
Showing 1-2 of 2 results.