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!)
A364331 G.f. satisfies A(x) = (1 + x*A(x)^2) * (1 + x*A(x)^5). 4
1, 2, 15, 163, 2070, 28698, 421015, 6425644, 100977137, 1622885389, 26551709946, 440744175801, 7404449354076, 125657625548824, 2150963575012295, 37094953102567208, 643904274979347286, 11241232087809137759, 197247501440314516840, 3476787208220672891388, 61533794803235280779261 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} binomial(2*n+3*k+1,k) * binomial(2*n+3*k+1,n-k) / (2*n+3*k+1).
MAPLE
A364331 := proc(n)
add( binomial(2*n+3*k+1, k) * binomial(2*n+3*k+1, n-k)/(2*n+3*k+1), k=0..n) ;
end proc:
seq(A364331(n), n=0..70); # R. J. Mathar, Jul 25 2023
PROG
(PARI) a(n) = sum(k=0, n, binomial(2*n+3*k+1, k)*binomial(2*n+3*k+1, n-k)/(2*n+3*k+1));
CROSSREFS
Cf. A200719.
Sequence in context: A268070 A204679 A363564 * A259608 A317278 A140809
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 18 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 July 13 17:17 EDT 2024. Contains 374284 sequences. (Running on oeis4.)