OFFSET
1,2
EXAMPLE
The coefficients in (1/n)*(1 - n^2*x)^(-1/n) begin:
n=1: [1, (1), 1, 1, 1, 1, 1, 1, 1, 1, ...];
n=2: [1/2, 1,(3), 10, 35, 126, 462, 1716, 6435, 24310, ...];
n=3: [1/3, 1, 6, (42), 315, 2457, 19656, 160056, 1320462, ...];
n=4: [1/4, 1, 10, 120,(1560), 21216, 297024, 4243200, ...];
n=5: [1/5, 1, 15, 275, 5500,(115500), 2502500, 55412500, ...];
n=6: [1/6, 1, 21, 546, 15561, 466830,(14471730), 458960580, ...];
n=7: [1/7, 1, 28, 980, 37730, 1531838, 64337196, (2766499428), ...];
n=8: [1/8, 1, 36, 1632, 81600, 4308480, 235530240, 13189693440, (751812526080), ...]; ...
the coefficients in parenthesis form the initial terms of this sequence.
PROG
(PARI) {a(n)=polcoeff(1/(1-n^2*x+x*O(x^n))^(1/n), n)/n}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 07 2011
STATUS
approved