cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

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.

This page as a plain text file.
%I A335871 #29 Aug 03 2020 10:28:16
%S A335871 1,1,3,20,234,4159,101538,3182454,122285201,5575750271,294529785168,
%T A335871 17697480642005,1192398100081202,89053864927236146,
%U A335871 7302988011333915878,652439391227186881683,63077327237347821501754,6561701255914880362990927,730833849063629052249986940
%N 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.
%H A335871 Seiichi Manyama, <a href="/A335871/b335871.txt">Table of n, a(n) for n = 0..339</a>
%t A335871 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 *)
%o A335871 (PARI) {a(n) = if(n==0, 1, sum(k=1, n, binomial(n, k)*binomial(n+(n-1)*k, k-1))/n)}
%Y A335871 Main diagonal of A336706.
%Y A335871 Cf. A336578, A336712, A336713, A336714.
%K A335871 nonn
%O A335871 0,3
%A A335871 _Seiichi Manyama_, Aug 01 2020