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.

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

Original entry on oeis.org

1, 1, -1, 1, -1, -1, 1, -1, -4, 0, 1, -1, -16, -5, 0, 1, -1, -64, -65, -3, 1, 1, -1, -256, -665, -79, 23, 0, 1, -1, -1024, -6305, -1575, 831, 44, 1, 1, -1, -4096, -58025, -28255, 33335, 4789, 104, 0, 1, -1, -16384, -527345, -481623, 1323807, 411664, 15099, 70, 0
Offset: 0

Views

Author

Seiichi Manyama, Nov 03 2017

Keywords

Examples

			Square array begins:
    1,  1,   1,     1,      1, ...
   -1, -1,  -1,    -1,     -1, ...
   -1, -4, -16,   -64,   -256, ...
    0, -5, -65,  -665,  -6305, ...
    0, -3, -79, -1575, -28255, ...
		

Crossrefs

Columns k=0..2 give A010815, A266964, A294584.
Rows n=0..1 give A000012, (-1)*A000012.
Cf. A294585.

Formula

A(0,k) = 1 and A(n,k) = -(1/n) * Sum_{j=1..n} (Sum_{d|j} d^(k+1+k*j/d)) * A(n-j,k) for n > 0.