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!)
A364475 G.f. satisfies A(x) = 1 + x*A(x)^3 + x^2*A(x)^3. 11
1, 1, 4, 18, 94, 529, 3135, 19270, 121732, 785496, 5155167, 34304706, 230923653, 1569684910, 10759159000, 74281473504, 516089542684, 3605685460750, 25316226436086, 178538289189108, 1264131169628799, 8982889404251721, 64041351551534215 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/2)} binomial(3*n-3*k,k) * binomial(3*n-4*k,n-2*k) / (2*n-2*k+1).
D-finite with recurrence 2*n*(2*n+1)*a(n) -(5*n+1)*(3*n-2)*a(n-1) +4*(-25*n^2+75*n-59) *a(n-2) +9*(-15*n^2+69*n-80)*a(n-3) -6*(3*n-8)*(3*n-10) *a(n-4)=0. - R. J. Mathar, Jul 27 2023
MAPLE
A364475 := proc(n)
add( binomial(3*n-3*k, k) * binomial(3*n-4*k, n-2*k)/(2*n-2*k+1), k=0..n/2) ;
end proc:
seq(A364475(n), n=0..80); # R. J. Mathar, Jul 27 2023
PROG
(PARI) a(n) = sum(k=0, n\2, binomial(3*n-3*k, k)*binomial(3*n-4*k, n-2*k)/(2*n-2*k+1));
CROSSREFS
Sequence in context: A121584 A209256 A367282 * A059227 A259533 A305239
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 26 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 June 29 18:23 EDT 2024. Contains 373855 sequences. (Running on oeis4.)