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

A364373
G.f. satisfies A(x) = (1 + x) * (1 - x*A(x)^4).
2
1, 0, -1, 4, -12, 26, -14, -236, 1604, -6577, 17827, -14064, -186496, 1437856, -6416576, 18733256, -17358808, -201270728, 1652571996, -7692333934, 23375782030, -23913813710, -250917362258, 2147925544190, -10270145045142, 32053993413694, -35259817590134
OFFSET
0,4
FORMULA
a(n) = Sum_{k=0..n} (-1)^k * binomial(4*k+1,k) * binomial(4*k+1,n-k) / (4*k+1).
PROG
(PARI) a(n) = sum(k=0, n, (-1)^k*binomial(4*k+1, k)*binomial(4*k+1, n-k)/(4*k+1));
CROSSREFS
Cf. A364337.
Sequence in context: A246988 A304843 A062883 * A008176 A009903 A008048
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jul 20 2023
STATUS
approved