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

A371407
Expansion of (1/x) * Series_Reversion( x / ( (1+x)^2 * (1+3*x)^2 ) ).
0
1, 8, 86, 1064, 14289, 202488, 2980380, 45122792, 698214548, 10993069856, 175546104958, 2836384141720, 46285381498750, 761735217877200, 12628402069223160, 210704642400488040, 3535494883741420908, 59621314428576557664, 1009942893735988354296
OFFSET
0,2
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..n} 3^k * binomial(2*(n+1),k) * binomial(2*(n+1),n-k).
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serreverse(x/((1+x)^2*(1+3*x)^2))/x)
(PARI) a(n) = sum(k=0, n, 3^k*binomial(2*(n+1), k)*binomial(2*(n+1), n-k))/(n+1);
CROSSREFS
Sequence in context: A180582 A230621 A357420 * A369505 A378692 A268052
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 21 2024
STATUS
approved