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.

A121678 a(n) = [x^n] (1 + x*(1+x)^n )^(n+1).

This page as a plain text file.
%I A121678 #3 Mar 30 2012 18:36:59
%S A121678 1,2,9,52,425,4236,49294,655096,9731313,159114880,2832245911,
%T A121678 54400757016,1119436524947,24532373640334,569732648555295,
%U A121678 13962373137304496,359767723241891425,9715902692094061488
%N A121678 a(n) = [x^n] (1 + x*(1+x)^n )^(n+1).
%C A121678 a(n) is divisible by (n+1): a(n)/(n+1) = A121679(n).
%F A121678 a(n) = Sum_{k=0..n+1} C(n+1,k) * C(n*k,n-k).
%e A121678 At n=5, a(5) = [x^5] (1 + x*(1+x)^5)^6 = 4236, since
%e A121678 (1+x*(1+x)^5)^6 = 1 + 6*x + 45*x^2 + 230*x^3 + 1050*x^4 + 4236*x^5 +...
%o A121678 (PARI) a(n)=sum(k=0,n+1,binomial(n+1,k)*binomial(n*k,n-k))
%Y A121678 Cf. A121679; variants: A121673-A121676, A121680.
%K A121678 nonn
%O A121678 0,2
%A A121678 _Paul D. Hanna_, Aug 15 2006