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!)
A320326 a(n) = Sum_{i=0..n} binomial(2*i-1,i)*binomial(2*i,n-i). 1
1, 1, 5, 23, 113, 568, 2905, 15040, 78581, 413496, 2188204, 11633666, 62089785, 332459890, 1785132500, 9608402738, 51826221461, 280063787170, 1515943655628, 8217729019538, 44606550971500, 242419877520384, 1318902900434870 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: (2*x^3 + 4*x^2 + 2*x)/(sqrt(-4*x^3 - 8*x^2 - 4*x + 1) + 4*x^3 + 8*x^2 + 4*x - 1).
Recurrence: n*a(n) = 2*(2*n - 1)*a(n-1) + 8*(n-1)*a(n-2) + 2*(2*n - 3)*a(n-3). - Vaclav Kotesovec, Oct 11 2018
MAPLE
a:=n->add(binomial(2*i-1, i)*binomial(2*i, n-i), i=0..n): seq(a(n), n=0..25); # Muniru A Asiru, Oct 11 2018
MATHEMATICA
Table[Sum[Binomial[2*i - 1, i]*Binomial[2*i, n - i], {i, 0, n}], {n, 0, 25}] (* Vaclav Kotesovec, Oct 11 2018 *)
PROG
(GAP) List([0..25], n->Sum([0..n], i->Binomial(2*i-1, i)*Binomial(2*i, n-i))); # Muniru A Asiru, Oct 11 2018
(PARI) a(n) = sum(i=0, n, binomial(2*i-1, i)*binomial(2*i, n-i)); \\ Michel Marcus, Oct 11 2018
CROSSREFS
Cf. A001700.
Sequence in context: A178873 A186652 A199312 * A299589 A113284 A104090
KEYWORD
nonn
AUTHOR
Vladimir Kruchinin, Oct 10 2018
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 10 17:06 EDT 2024. Contains 372388 sequences. (Running on oeis4.)