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!)
A152602 A symmetrical vector coefficient recursion sequence: a(n)=2*{0,a(n-2,0}+2*{-1/2,a(n-1)}+2*{a(n-1),-1/2}. 0

%I #6 Mar 13 2024 19:21:03

%S 1,1,1,1,6,1,1,16,16,1,1,36,76,36,1,1,76,256,256,76,1,1,156,736,1176,

%T 736,156,1,1,316,1936,4336,4336,1936,316,1,1,636,4816,14016,19696,

%U 14016,4816,636,1,1,1276,11536,41536,76096,76096,41536,11536,1276,1,1,2556

%N A symmetrical vector coefficient recursion sequence: a(n)=2*{0,a(n-2,0}+2*{-1/2,a(n-1)}+2*{a(n-1),-1/2}.

%C The name contains an unmatched bracket. - Editors, Mar 13 2024

%C Row sums are;

%C {1, 2, 8, 34, 150, 666, 2962, 13178, 58634, 260890, 1160826,...}

%F a(n)=2*{0,a(n-2,0}+2*{-1/2,a(n-1)}+2*{a(n-1),-1/2}.

%F T(n,k) = 2T(n-2,k-1)+2T(n-1,k-1)+2T(n-1,k), 0<k<n, n>1. T(n,0) = 2T(n-1,0)-1, n>1. T(n,n) = 2T(n-1,n-1)-1, n>1. Row sum recurrence: s(n)=5*s(n-1)-2*s(n-2)-2*s(n-3), s=sum_(k=0..n) T(n,k). [From _R. J. Mathar_, Dec 10 2008]

%e {1},

%e {1, 1},

%e {1, 6, 1},

%e {1, 16, 16, 1},

%e {1, 36, 76, 36, 1},

%e {1, 76, 256, 256, 76, 1},

%e {1, 156, 736, 1176, 736, 156, 1},

%e {1, 316, 1936, 4336, 4336, 1936, 316, 1},

%e {1, 636, 4816, 14016, 19696, 14016, 4816, 636, 1},

%e {1, 1276, 11536, 41536, 76096, 76096, 41536, 11536, 1276, 1},

%e {1, 2556, 26896, 115776, 263296, 343776, 263296, 115776, 26896, 2556, 1}

%t Clear[a]; a[0] = {1}; a[1] = {1, 1};

%t a[n_] := a[n] = 2*Join[{0}, a[n - 2], {0}] + 2*Join[{-1/2}, a[n - 1]] + 2*Join[a[n - 1], {-1/2}]'

%t Table[a[n], {n, 0, 10}] Flatten[%]

%K nonn,uned,tabl,obsc

%O 0,5

%A _Roger L. Bagula_, Dec 09 2008

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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)