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
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, 736, 156, 1, 1, 316, 1936, 4336, 4336, 1936, 316, 1, 1, 636, 4816, 14016, 19696, 14016, 4816, 636, 1, 1, 1276, 11536, 41536, 76096, 76096, 41536, 11536, 1276, 1, 1, 2556 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
The name contains an unmatched bracket. - Editors, Mar 13 2024
Row sums are;
{1, 2, 8, 34, 150, 666, 2962, 13178, 58634, 260890, 1160826,...}
LINKS
FORMULA
a(n)=2*{0,a(n-2,0}+2*{-1/2,a(n-1)}+2*{a(n-1),-1/2}.
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]
EXAMPLE
{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, 736, 156, 1},
{1, 316, 1936, 4336, 4336, 1936, 316, 1},
{1, 636, 4816, 14016, 19696, 14016, 4816, 636, 1},
{1, 1276, 11536, 41536, 76096, 76096, 41536, 11536, 1276, 1},
{1, 2556, 26896, 115776, 263296, 343776, 263296, 115776, 26896, 2556, 1}
MATHEMATICA
Clear[a]; a[0] = {1}; a[1] = {1, 1};
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}]'
Table[a[n], {n, 0, 10}] Flatten[%]
CROSSREFS
Sequence in context: A357156 A296963 A176560 * A119726 A103999 A154985
KEYWORD
nonn,uned,tabl,obsc
AUTHOR
Roger L. Bagula, Dec 09 2008
STATUS
approved

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 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)