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!)
A308036 Coefficient of x^n in 1/(n+1) * (1 + x - 3*x^2)^(n+1). 2
1, 1, -2, -8, 1, 61, 91, -377, -1469, 1027, 16120, 18250, -132065, -427517, 620062, 5707648, 3746683, -55581941, -144227438, 351490672, 2274331579, 278638399, -25348074713, -50842003745, 195685236757, 957135268261, -459626168864, -12027281377922 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Also coefficient of x^n in the expansion of 2/(1 - x + sqrt(1 - 2*x + 13*x^2)).
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/2)} (-3)^k * binomial(n,k) * binomial(n-k,k)/(k+1) = Sum_{k=0..floor(n/2)} (-3)^k * binomial(n,2*k) * A000108(k).
(n+2) * a(n) = (2*n+1) * a(n-1) - 13 * (n-1) * a(n-2).
a(n) = Hypergeometric2F1(1/2 - n/2, -n/2, 2, -12). - Vaclav Kotesovec, May 12 2021
MATHEMATICA
a[n_] := Sum[(-3)^k * Binomial[n, 2*k] * CatalanNumber[k], {k, 0, Floor[n/2]}]; Array[a, 28, 0] // Flatten (* Amiram Eldar, May 12 2021 *)
Table[Hypergeometric2F1[1/2 - n/2, -n/2, 2, -12], {n, 0, 30}] (* Vaclav Kotesovec, May 12 2021 *)
PROG
(PARI) {a(n) = polcoef((1+x-3*x^2)^(n+1)/(n+1), n)}
(PARI) {a(n) = sum(k=0, n\2, (-3)^k*binomial(n, k)*binomial(n-k, k)/(k+1))}
(PARI) {a(n) = sum(k=0, n\2, (-3)^k*binomial(n, 2*k)*binomial(2*k, k)/(k+1))}
CROSSREFS
Column 3 of A308035.
Sequence in context: A065249 A062038 A318106 * A305677 A296569 A021082
KEYWORD
sign
AUTHOR
Seiichi Manyama, May 10 2019
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 25 12:32 EDT 2024. Contains 371969 sequences. (Running on oeis4.)