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!)
A321798 G.f. satisfies: A(x) = 1/(1 - x/(1 - x*A(x))^4). 9
1, 1, 5, 23, 117, 636, 3607, 21106, 126489, 772468, 4789844, 30075937, 190851839, 1222000222, 7885041530, 51222338580, 334720178969, 2198755865424, 14511029102232, 96169424666028, 639757737711300, 4270520564506069, 28595671605541357, 192025292117465445, 1292866976587651519 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..1000 (terms 0..199 from Ludovic Schwob)
FORMULA
a(n) = Sum_{k=0..n} (C(n,k)/(n-k+1)) * C(n+3*k-1,n-k).
a(n) ~ sqrt((1 - r*s)*(1 + 3*r*s)/(8*Pi*(8*s - 3))) / (n^(3/2) * r^(n+1)), where r = 0.139684805934917057093949761392656080860096066578... and s = 1.76437708701490464570032194388560298744432681226... are real roots of the system of equations s*(1 - r/(1 - r*s)^4) = 1, 4*r^2*s^2 = (1 - r*s)^5. - Vaclav Kotesovec, Nov 21 2018
MATHEMATICA
a[n_] := Sum[Binomial[n, k] * Binomial[n + 3k - 1, n - k]/(n - k + 1), {k, 0,
n}]; Array[a, 20, 0] (* Amiram Eldar, Nov 19 2018 *)
PROG
(PARI) a(n) = sum(k=0, n, binomial(n, k)*binomial(n+3*k-1, n-k)/(n-k+1)); \\ Michel Marcus, Nov 19 2018
(GAP) List([0..25], n->Sum([0..n], k->Binomial(n, k)/(n-k+1)*Binomial(n+3*k-1, n-k))); # Muniru A Asiru, Nov 24 2018
CROSSREFS
Sequence in context: A358607 A073596 A167248 * A005393 A193704 A294356
KEYWORD
nonn
AUTHOR
Ludovic Schwob, Nov 19 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 August 11 07:51 EDT 2024. Contains 375059 sequences. (Running on oeis4.)