login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A338755
Central coefficients of number triangle A210590.
2
1, 5, 119, 5205, 324569, 26519745, 2681170547, 323104570789, 45224035123553, 7211322045457101, 1290620989042420815, 256193650031596282005, 55863607060241676345961, 13273922770286234753307065, 3413846723448521483558054235, 944832714523233697801280445525, 280003865538498845896076940256065
OFFSET
0,2
LINKS
FORMULA
a(n) = A210590(2*n, n) = (-1)^n * A234937(2*n, n).
PROG
(PARI) {a(n) = my(t='t); (2*n)!*polcoef(polcoef(prod(k=1, 2*n, (1-x^k+x*O(x^(2*n)))^(-1-t)), 2*n), n)}
(PARI) {a(n) = my(t='t); if(n==0, 1, (2*n)!*polcoef(polcoef(exp(sum(k=1, 2*n, (1+t)*sigma(k)*(x^k+x*O(x^(2*n)))/k)), 2*n), n))}
CROSSREFS
Sequence in context: A156962 A065818 A139189 * A155202 A168599 A193328
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 07 2020
STATUS
approved