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!)
A220178 Triangle where the g.f. for row n equals d^n/dx^n (1+x+x^2)^n / n! for n>=0, as read by rows. 3

%I #20 Jun 22 2019 09:22:01

%S 1,1,2,3,6,6,7,24,30,20,19,80,150,140,70,51,270,630,840,630,252,141,

%T 882,2520,4200,4410,2772,924,393,2856,9576,19320,25410,22176,12012,

%U 3432,1107,9144,35280,83160,131670,144144,108108,51480,12870,3139,29070,126720,341880,630630,828828,780780,514800,218790,48620

%N Triangle where the g.f. for row n equals d^n/dx^n (1+x+x^2)^n / n! for n>=0, as read by rows.

%H Ivan Neretin, <a href="/A220178/b220178.txt">Table of n, a(n) for n = 0..5150 (rows 0..100)</a>

%F G.f.: A(x,y) = 1 / sqrt(1-2*x-3*x^2 - 4*x*y).

%F G.f.: A(x,y) = Sum_{k>=0} binomial(2*k,k) * x^k*y^k / (1-2*x-3*x^2)^(k+1/2).

%F First column is the central trinomial coefficients (A002426).

%F Main diagonal is the central binomial coefficients (A000984).

%F Row sums form the central coefficients of (1+3*x+3*x^2)^n (A122868).

%e Triangle begins:

%e 1;

%e 1, 2;

%e 3, 6, 6;

%e 7, 24, 30, 20;

%e 19, 80, 150, 140, 70;

%e 51, 270, 630, 840, 630, 252;

%e 141, 882, 2520, 4200, 4410, 2772, 924;

%e 393, 2856, 9576, 19320, 25410, 22176, 12012, 3432;

%e 1107, 9144, 35280, 83160, 131670, 144144, 108108, 51480, 12870; ...

%e The g.f. for column k>=0 equals the central binomial coefficient C(2*k,k) times x^k*y^k*G(x)^(2*k+1) where G(x) = 1/sqrt(1-2*x-3*x^2) is the g.f. of the central trinomial coefficients A002426.

%e The g.f. for row n is d^n/dx^n (1+x+x^2)^n/n!, which begins:

%e n=0: 1;

%e n=1: 1 + 2*x;

%e n=2: 3 + 6*x + 6*x^2;

%e n=3: 7 + 24*x + 30*x^2 + 20*x^3;

%e n=4: 19 + 80*x + 150*x^2 + 140*x^3 + 70*x^4;

%e n=5: 51 + 270*x + 630*x^2 + 840*x^3 + 630*x^4 + 252*x^5;

%e n=6: 141 + 882*x + 2520*x^2 + 4200*x^3 + 4410*x^4 + 2772*x^5 + 924*x^6; ...

%t Flatten@Table[CoefficientList[D[(1 + x + x^2)^n/n!, {x, n}], x], {n, 0, 9}] (* _Ivan Neretin_, Jun 22 2019 *)

%o (PARI) {T(n,k)=polcoeff(polcoeff(1/sqrt(1-2*x-3*x^2 - 4*x*y +x*O(x^n)+y*O(y^k)),n,x),k,y)}

%o for(n=0,12,for(k=0,n,print1(T(n,k),", "));print(""))

%o (PARI) row(n) = my(p=(1+x+x^2)^n / n!); for (k=1, n, p = deriv(p)); Vecrev(p); \\ _Michel Marcus_, Jun 22 2019

%Y Cf. A002426 (first column), A000984 (main diagonal), A122868 (row sums).

%K nonn,tabl

%O 0,3

%A _Paul D. Hanna_, Dec 06 2012

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 April 25 10:01 EDT 2024. Contains 371967 sequences. (Running on oeis4.)