The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A152655 A vector recursion sequence: k = -3; m = 3; l = -3; a(n)=k*{0,a(n-2),0}+m*{-(m-1)/m,a(n-1)}++m*{a(n-1),-(m-1)/m}+l*{0,0,a(n-4),0,0}. 0
1, 1, 1, 1, 3, 1, 1, 9, 9, 1, 1, 27, 42, 27, 1, 1, 81, 177, 177, 81, 1, 1, 243, 690, 927, 690, 243, 1, 1, 729, 2553, 4293, 4293, 2553, 729, 1, 1, 2187, 9114, 18387, 22851, 18387, 9114, 2187, 1, 1, 6561, 31713, 74601, 110304, 110304, 74601, 31713, 6561, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
The row sums are:
{1, 2, 5, 20, 98, 518, 2795, 15152, 82229, 446360, 2423084,...}
LINKS
FORMULA
k = -3; m = 3; l = -3; a(n)=k*{0,a(n-2),0}+m*{-(m-1)/m,a(n-1)}++m*{a(n-1),-(m-1)/m}+l*{0,0,a(n-4),0,0}.
EXAMPLE
{1},
{1, 1},
{1, 3, 1},
{1, 9, 9, 1},
{1, 27, 42, 27, 1},
{1, 81, 177, 177, 81, 1},
{1, 243, 690, 927, 690, 243, 1},
{1, 729, 2553, 4293, 4293, 2553, 729, 1},
{1, 2187, 9114, 18387, 22851, 18387, 9114, 2187, 1},
{1, 6561, 31713, 74601, 110304, 110304, 74601, 31713, 6561, 1},
{1, 19683, 108258, 290871, 497484, 590490, 497484, 290871, 108258, 19683, 1}
MATHEMATICA
Clear[a, k, m, l]; k = -3; m = 3; l = -3; a[0] = {1}; a[1] = {1, 1};
a[n_] := a[n] = k*Join[{0}, a[n - 2], {0}] + m*Join[{-(m - 1)/m}, a[n - 1]] + m*Join[a[n - 1], {-(m - 1)/m}] +
If[n >= 4, k*Join[{0, 0}, a[n - 4], {0, 0}], Table[0, {i, 0, n}]];
Table[a[n], {n, 0, 10}]; Flatten[%]
CROSSREFS
Sequence in context: A156610 A203460 A157179 * A144493 A118180 A176482
KEYWORD
nonn,uned
AUTHOR
Roger L. Bagula, Dec 10 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 June 12 22:58 EDT 2024. Contains 373360 sequences. (Running on oeis4.)