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!)
A364765 G.f. satisfies A(x) = 1 + x*A(x)^4 / (1 - x*A(x)^5). 4
1, 1, 5, 36, 304, 2808, 27475, 279845, 2935987, 31511097, 344344868, 3818320487, 42855633210, 485923475563, 5557803724920, 64046876264292, 742908320701832, 8667090253409215, 101631581618367133, 1197190915359577973, 14160413911721178800 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f. satisfies A(x) = 1 + x*A(x)^6 / (1 + x*A(x)^4).
a(n) = (1/n) * Sum_{k=0..n-1} binomial(n,k) * binomial(4*n+k,n-1-k) for n > 0.
a(n) = (1/n) * Sum_{k=0..n-1} (-1)^k * binomial(n,k) * binomial(6*n-2*k,n-1-k) for n > 0.
a(n) = (1/n) * Sum_{k=0..floor(n-1)/2} binomial(n,k) * binomial(5*n-k,n-1-2*k) for n > 0. - Seiichi Manyama, Apr 01 2024
PROG
(PARI) a(n) = if(n==0, 1, sum(k=0, n-1, binomial(n, k)*binomial(4*n+k, n-1-k))/n);
CROSSREFS
Sequence in context: A357153 A255489 A091161 * A135149 A269007 A246510
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 06 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 September 6 03:14 EDT 2024. Contains 375701 sequences. (Running on oeis4.)