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.

A294462 Expansion of e.g.f. Product_{k>0} (1-k*x^k)^(-1/k).

Original entry on oeis.org

1, 1, 4, 18, 132, 900, 10080, 93240, 1285200, 16526160, 264600000, 3950100000, 81280584000, 1401728328000, 30861115084800, 663835444272000, 16425316331424000, 380082583808928000, 10885891543502976000, 279441709690118976000, 8697410321979899520000
Offset: 0

Views

Author

Seiichi Manyama, Oct 31 2017

Keywords

Crossrefs

Column k=1 of A294761.

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(1/prod(k=1, N, (1-k*x^k)^(1/k))))

Formula

a(0) = 1 and a(n) = (n-1)! * Sum_{k=1..n} A055225(k)*a(n-k)/(n-k)! for n > 0.
E.g.f.: exp(Sum_{k>=1} Sum_{j>=1} j^(k-1)*x^(j*k)/k). - Ilya Gutkovskiy, May 28 2018

A294616 Square array A(n,k), n >= 0, k >= 0, read by antidiagonals, where column k is the expansion of e.g.f.: Product_{j>0} (1-j^k*x^j)^(1/j).

Original entry on oeis.org

1, 1, -1, 1, -1, -1, 1, -1, -2, 1, 1, -1, -4, 0, -1, 1, -1, -8, -6, -12, 41, 1, -1, -16, -30, -72, 180, -131, 1, -1, -32, -114, -360, 840, -1080, 1499, 1, -1, -64, -390, -1656, 4200, -8640, 15120, -4159, 1, -1, -128, -1266, -7272, 22440, -69120, 161280, -45360
Offset: 0

Views

Author

Seiichi Manyama, Nov 05 2017

Keywords

Examples

			Square array begins:
    1,   1,   1,    1,     1,      1, ...
   -1,  -1,  -1,   -1,    -1,     -1, ...
   -1,  -2,  -4,   -8,   -16,    -32, ...
    1,   0,  -6,  -30,  -114,   -390, ...
   -1, -12, -72, -360, -1656,  -7272, ...
   41, 180, 840, 4200, 22440, 126600, ...
		

Crossrefs

Columns k=0..1 give A028343, A294463.
Rows n=0..3 give A000012, (-1)*A000012, (-1)*A000079, (-1)*A245804.
Cf. A294761.

Formula

A(0,k) = 1 and A(n,k) = -(n-1)! * Sum_{j=1..n} (Sum_{d|j} d^(k*j/d)) * A(n-j,k)/(n-j)! for n > 0.
Showing 1-2 of 2 results.