OFFSET
0,6
COMMENTS
A(n,k) is the invert transform of k-th powers evaluated at n.
LINKS
N. J. A. Sloane, Transforms
FORMULA
G.f. of column k: 1/(1 - PolyLog(-k,x)), where PolyLog() is the polylogarithm function.
EXAMPLE
G.f. of column k: A_k(x) = 1 + x + (2^k + 1)*x^2 + (2^(k + 1) + 3^k + 1)*x^3 + (3*2^k + 2^(2*k + 1) + 2*3^k + 1)*x^4 + ...
Square array begins:
1, 1, 1, 1, 1, 1, ...
1, 1, 1, 1, 1, 1, ...
2, 3, 5, 9, 17, 33, ...
4, 8, 18, 44, 114, 308, ...
8, 21, 63, 207, 723, 2631, ...
16, 55, 221, 991, 4805, 24655, ...
MATHEMATICA
Table[Function[k, SeriesCoefficient[1/(1 - Sum[i^k x^i, {i, 1, n}]), {x, 0, n}]][j - n], {j, 0, 10}, {n, 0, j}] // Flatten
Table[Function[k, SeriesCoefficient[1/(1 - PolyLog[-k, x]), {x, 0, n}]][j - n], {j, 0, 10}, {n, 0, j}] // Flatten
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Ilya Gutkovskiy, Oct 08 2018
STATUS
approved