[go: up one dir, main page]

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

A366436
G.f. A(x) satisfies A(x) = 1 + x * ((1 - x) / A(x))^3.
7
1, 1, -6, 36, -272, 2304, -20880, 198080, -1942080, 19521792, -200101376, 2083538688, -21976624128, 234321952768, -2521446660096, 27347192389632, -298643542716416, 3280990949720064, -36238161907974144, 402146115064233984, -4481721683926056960
OFFSET
0,3
FORMULA
a(n) = (-1)^(n-1) * Sum_{k=0..n} binomial(4*k-1,k) * binomial(3*k,n-k) / (4*k-1).
PROG
(PARI) a(n) = (-1)^(n-1)*sum(k=0, n, binomial(4*k-1, k)*binomial(3*k, n-k)/(4*k-1));
CROSSREFS
Partial sums give A366365.
Sequence in context: A335811 A144892 A204210 * A318564 A259818 A330449
KEYWORD
sign
AUTHOR
Seiichi Manyama, Oct 09 2023
STATUS
approved