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”).

A366327
G.f. satisfies A(x) = (1 + x) * (1 + x/A(x)^3).
4
1, 2, -5, 33, -260, 2263, -20979, 203124, -2030121, 20786694, -216928144, 2298911699, -24673591005, 267644087524, -2929602893537, 32317666058508, -358931896710948, 4010200327457883, -45040693394259858, 508253687784232108, -5759468659295939684
OFFSET
0,2
FORMULA
a(n) = (-1)^(n-1) * Sum_{k=0..n} binomial(4*k-1,k) * binomial(n+2*k-2,n-k)/(4*k-1).
PROG
(PARI) a(n) = (-1)^(n-1)*sum(k=0, n, binomial(4*k-1, k)*binomial(n+2*k-2, n-k)/(4*k-1));
KEYWORD
sign
AUTHOR
Seiichi Manyama, Oct 07 2023
STATUS
approved