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.

A105556 Triangle, read by rows, such that column n equals the row sums of A001263^n, which is the n-th matrix power of the Narayana triangle A001263, for n>=0.

This page as a plain text file.
%I A105556 #9 Mar 04 2018 03:08:41
%S A105556 1,1,1,1,2,1,1,5,3,1,1,14,12,4,1,1,42,57,22,5,1,1,132,303,148,35,6,1,
%T A105556 1,429,1743,1144,305,51,7,1,1,1430,10629,9784,3105,546,70,8,1,1,4862,
%U A105556 67791,90346,35505,6906,889,92,9,1,1,16796,448023,885868,444225,99156
%N A105556 Triangle, read by rows, such that column n equals the row sums of A001263^n, which is the n-th matrix power of the Narayana triangle A001263, for n>=0.
%C A105556 Column 1 is the Catalan numbers A000108 (offset 1).
%F A105556 From _Paul D. Hanna_, Feb 01 2009: (Start)
%F A105556 G.f. of column k = B(x)^(k+1) where B(x) = Sum_{n>=0} x^n/[n!*(n+1)!/2^n];
%F A105556 T(n,K) = [x^(n-k)] B(x)^(k+1) * (n-k)!*(n-k+1)!/2^(n-k) for n >= k >= 0. (End)
%e A105556 Triangle begins:
%e A105556   1;
%e A105556   1,    1;
%e A105556   1,    2,     1;
%e A105556   1,    5,     3,     1;
%e A105556   1,   14,    12,     4,     1;
%e A105556   1,   42,    57,    22,     5,    1;
%e A105556   1,  132,   303,   148,    35,    6,   1;
%e A105556   1,  429,  1743,  1144,   305,   51,   7,  1;
%e A105556   1, 1430, 10629,  9784,  3105,  546,  70,  8, 1;
%e A105556   1, 4862, 67791, 90346, 35505, 6906, 889, 92, 9, 1;
%e A105556   ...
%e A105556 From _Paul D. Hanna_, Feb 01 2009: (Start)
%e A105556 G.f. for rows n=0..3 are:
%e A105556 B(x) = 1 + x + x^2/3 + x^3/18 + x^4/180 + x^5/2700 + ... + x^n/[n!*(n+1)!/2^n] + ...
%e A105556 B(x)^2 = 1 + 2*x + 5*x^2/3 + 14*x^3/18 + 42*x^4/180 + ... + A000108(n)*x^n/[n!*(n+1)!/2^n] + ...
%e A105556 B(x)^3 = 1 + 3*x +12*x^2/3 + 57*x^3/18 +303*x^4/180 + ... + A103370(n)*x^n/[n!*(n+1)!/2^n] + ...
%e A105556 B(x)^4 = 1 + 4*x +22*x^2/3 +148*x^3/18+1144*x^4/180 + 9784*x^5/2700 + 90346*x^5/56700 + ... (End)
%o A105556 (PARI) {T(n,k)=local(N=matrix(n+1,n+1,m,j,if(m>=j, binomial(m-1,j-1)*binomial(m,j-1)/j))); sum(j=0,n-k,(N^k)[n-k+1,j+1])}
%o A105556 (PARI) {T(n,k)=local(B=sum(j=0,n-k,x^j/(j!*(j+1)!/2^j))+x*O(x^(n-k))); polcoeff(B^(k+1),n-k)*(n-k)!*(n-k+1)!/2^(n-k)} \\ _Paul D. Hanna_, Feb 01 2009
%Y A105556 Cf. A001263, A105557 (row sums), A103370 (column 2).
%Y A105556 Cf. A155926. - _Paul D. Hanna_, Feb 01 2009
%K A105556 nonn,tabl
%O A105556 0,5
%A A105556 _Paul D. Hanna_, Apr 14 2005