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

A378733
G.f. A(x) satisfies A(x) = 1 + x / (1 - x*A(x)^2)^4.
0
1, 1, 4, 18, 96, 551, 3332, 20906, 134820, 888151, 5951096, 40432550, 277892604, 1928668910, 13497833600, 95150192558, 674993798716, 4815149310441, 34519885929860, 248571425473698, 1797058507267104, 13038781500215352, 94914559729835580, 692987915940266152
OFFSET
0,3
FORMULA
G.f.: A(x) = sqrt(B(x)) where B(x) is the g.f. of A365123.
If g.f. satisfies A(x) = ( 1 + x*A(x)^(t/r) / (1 - x*A(x)^(u/r))^s )^r, then a(n) = r * Sum_{k=0..n} binomial(t*k+u*(n-k)+r,k) * binomial(n+(s-1)*k-1,n-k)/(t*k+u*(n-k)+r).
PROG
(PARI) a(n, r=1, s=4, t=0, u=2) = r*sum(k=0, n, binomial(t*k+u*(n-k)+r, k)*binomial(n+(s-1)*k-1, n-k)/(t*k+u*(n-k)+r));
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Seiichi Manyama, Dec 06 2024
STATUS
approved