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!)
A362087 a(n) = Sum_{k=0..n} (-1)^k * binomial(-n,k) * binomial(2*k,n-k). 1
1, 1, 7, 37, 215, 1271, 7651, 46614, 286599, 1774630, 11050897, 69134572, 434174819, 2735565574, 17283825370, 109466361512, 694764983463, 4417771590123, 28137563496298, 179478199605550, 1146342590242465, 7330598365285470, 46928753892901140 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n} binomial(n+k-1,k) * binomial(2*k,n-k).
a(n) = [x^n] 1/(1 - x*(1+x)^2)^n.
MATHEMATICA
Table[Sum[Binomial[n + k - 1, k]*Binomial[2*k, n-k], {k, 0, n}], {n, 0, 25}] (* Vaclav Kotesovec, Apr 08 2023 *)
PROG
(PARI) a(n) = sum(k=0, n, binomial(n+k-1, k)*binomial(2*k, n-k));
CROSSREFS
Column k=2 of A362078.
Cf. A362084.
Sequence in context: A274674 A255672 A077239 * A046235 A297329 A347726
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 08 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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)