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!)
A335871 a(0) = 1 and a(n) = (1/n) * Sum_{k=1..n} binomial(n,k) * binomial(n+(n-1)*k,k-1) for n > 0. 5
1, 1, 3, 20, 234, 4159, 101538, 3182454, 122285201, 5575750271, 294529785168, 17697480642005, 1192398100081202, 89053864927236146, 7302988011333915878, 652439391227186881683, 63077327237347821501754, 6561701255914880362990927, 730833849063629052249986940 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
MATHEMATICA
a[0] = 1; a[n_] := Sum[Binomial[n, k] * Binomial[n + (n - 1)*k, k - 1], {k, 1, n}] / n; Array[a, 19, 0] (* Amiram Eldar, Aug 01 2020 *)
PROG
(PARI) {a(n) = if(n==0, 1, sum(k=1, n, binomial(n, k)*binomial(n+(n-1)*k, k-1))/n)}
CROSSREFS
Main diagonal of A336706.
Sequence in context: A194972 A294603 A240957 * A195135 A201148 A248653
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 01 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 March 28 09:04 EDT 2024. Contains 371240 sequences. (Running on oeis4.)