The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A365880 Expansion of (1/x) * Series_Reversion( x*(1+x)^4*(1-x)^5 ). 3
1, 1, 6, 21, 116, 566, 3176, 17501, 101391, 590756, 3519782, 21163038, 128845344, 790810400, 4894134376, 30486741869, 191068074202, 1203710067455, 7619193325238, 48430121151156, 309011352878208, 1978450305442086, 12706836843595840 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..n} (-1)^k * binomial(4*n+k+3,k) * binomial(6*n-k+4,n-k).
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/2)} binomial(4*n+k+3,k) * binomial(2*n-2*k,n-2*k). - Seiichi Manyama, Jan 18 2024
a(n) = (1/(n+1)) * [x^n] 1/( (1+x)^4 * (1-x)^5 )^(n+1). - Seiichi Manyama, Feb 16 2024
PROG
(PARI) a(n) = sum(k=0, n, (-1)^k*binomial(4*n+k+3, k)*binomial(6*n-k+4, n-k))/(n+1);
(SageMath)
def A365880(n):
h = binomial(6*n + 4, n) * hypergeometric([-n, 4*(n + 1)], [-6 * n - 4], -1) / (n + 1)
return simplify(h)
print([A365880(n) for n in range(23)]) # Peter Luschny, Sep 21 2023
CROSSREFS
Sequence in context: A364328 A298837 A009253 * A251593 A012840 A013320
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 21 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 16 04:39 EDT 2024. Contains 372549 sequences. (Running on oeis4.)