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!)
A331792 Expansion of ((1 - 4*x)/sqrt(1 - 8*x + 4*x^2) - 1)/(6*x^2). 2
1, 8, 57, 400, 2810, 19824, 140497, 999968, 7143966, 51206320, 368094122, 2652720096, 19159794004, 138658606688, 1005231020865, 7299082678336, 53074479789878, 386419850997552, 2816685368479342, 20553133273532000, 150120362670452076 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (2/(n+2)) * A331515(n) = Sum_{k=0..n} 3^k * binomial(n+1,k) * binomial(n+1,k+1).
n * (n+2) * a(n) = (n+1) * (4 * (2*n+1) * a(n-1) - 4 * n * a(n-2)) for n>1.
a(n) ~ 2^(n + 1/2) * (2 + sqrt(3))^(n + 3/2) / (3^(3/4) * sqrt(Pi*n)). - Vaclav Kotesovec, Jan 26 2020
MATHEMATICA
a[n_] := Sum[3^k * Binomial[n + 1, k] * Binomial[n + 1, k + 1], {k, 0, n}]; Array[a, 21, 0] (* Amiram Eldar, May 05 2021 *)
PROG
(PARI) N=20; x='x+O('x^N); Vec(((1-4*x)/sqrt(1-8*x+4*x^2)-1)/(6*x^2))
(PARI) {a(n) = sum(k=0, n, 3^k*binomial(n+1, k)*binomial(n+1, k+1))}
CROSSREFS
Column 4 of A331791.
Cf. A331515.
Sequence in context: A164031 A297369 A023000 * A097114 A022038 A277671
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 26 2020
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 17 08:00 EDT 2024. Contains 374360 sequences. (Running on oeis4.)