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!)
A123305 Triangle T, read by rows, where column k of T equals (k+1)*(column k of T^2) when shifted to have an initial '1'; i.e., T(n,k) = (k+1)*[T^2](n-1,k) for n>k>=0, with T(n,n)=1 for n>=0. 8

%I #3 Mar 30 2012 18:36:59

%S 1,1,1,2,2,1,6,8,3,1,26,44,18,4,1,156,312,144,32,5,1,1234,2776,1422,

%T 336,50,6,1,12340,30312,16848,4256,650,72,7,1,150994,397728,235458,

%U 63072,10050,1116,98,8,1,2204112,6151768,3827628,1076128,178900,20376,1764

%N Triangle T, read by rows, where column k of T equals (k+1)*(column k of T^2) when shifted to have an initial '1'; i.e., T(n,k) = (k+1)*[T^2](n-1,k) for n>k>=0, with T(n,n)=1 for n>=0.

%F T(n,k) = (k+1)*Sum_{j=0..n-1} T(n-1,j)*T(j,k) for n>0, with T(n,n)=1 n>=0.

%e Triangle begins:

%e 1;

%e 1, 1;

%e 2, 2, 1;

%e 6, 8, 3, 1;

%e 26, 44, 18, 4, 1;

%e 156, 312, 144, 32, 5, 1;

%e 1234, 2776, 1422, 336, 50, 6, 1;

%e 12340, 30312, 16848, 4256, 650, 72, 7, 1;

%e 150994, 397728, 235458, 63072, 10050, 1116, 98, 8, 1; ...

%e Matrix square starts:

%e 1;

%e 2, 1;

%e 6, 4, 1;

%e 26, 22, 6, 1;

%e 156, 156, 48, 8, 1;

%e 1234, 1388, 474, 84, 10, 1;

%e 12340, 15156, 5616, 1064, 130, 12, 1; ...

%e Note that (column k of T shifted) = (k+1)*(column k of T^2):

%e k=1: [2,8,44,312,2776,...] = 2*[1,4,22,156,1388,...];

%e k=2: [3,18,144,1422,16848,....] = 3*[1,6,48,474,5616,...].

%o (PARI) {T(n, k)=if(n<0|k>n,0,if(n==k,1,(k+1)*sum(j=0, n-1, T(n-1, j)*T(j, k)); ))}

%Y Columns: A123306, A123307, A123308, A123309; A123310 (row sums); A123311 (central terms).

%K nonn,tabl

%O 0,4

%A _Paul D. Hanna_, Sep 24 2006

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 May 11 02:40 EDT 2024. Contains 372388 sequences. (Running on oeis4.)