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.
%I A121680 #5 Oct 02 2020 09:49:10 %S A121680 1,2,12,76,655,6816,81690,1109816,16782399,278438740,5016899833, %T A121680 97368894756,2021749249403,44658312247290,1044437050070340, %U A121680 25757381769393392,667470006331599523,18119105978249333988 %N A121680 a(n) = [x^n] (1 + x*(1+x)^(n+1) )^(n+1). %C A121680 a(n) is divisible by (n+1): a(n)/(n+1) = A121681(n). %F A121680 a(n) = Sum_{k=0..n+1} C(n+1,k) * C((n+1)*k,n-k). %e A121680 At n=4, a(4) = [x^4] (1 + x*(1+x)^5 )^5 = 655, since %e A121680 (1 + x*(1+x)^5 )^5 = 1 + 5*x + 35*x^2 + 160*x^3 + 655*x^4 +... %t A121680 Table[Sum[Binomial[n+1,k] * Binomial[(n+1)*k,n-k], {k,0,n+1}], {n,0,20}] (* _Vaclav Kotesovec_, Oct 02 2020 *) %o A121680 (PARI) a(n)=sum(k=0,n+1,binomial(n+1,k)*binomial((n+1)*k,n-k)) %Y A121680 Cf. A121681; variants: A121673-A121679. %K A121680 nonn %O A121680 0,2 %A A121680 _Paul D. Hanna_, Aug 15 2006