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!)
A124039 Tridiagonal matrices with zero center upper 3 as a triangular sequence: m(n,m,d)=If[ n == m && n > 1 && m > 1, 0, If[n == m - 1 || n == m + 1, -1, If[n == m == 1, 3, 0]]]. 1
3, 3, -1, -1, -3, 1, -3, 2, 3, -1, 1, 6, -3, -3, 1, 3, -3, -9, 4, 3, -1, -1, -9, 6, 12, -5, -3, 1, -3, 4, 18, -10, -15, 6, 3, -1, 1, 12, -10, -30, 15, 18, -7, -3, 1, 3, -5, -30, 20, 45, -21, -21, 8, 3, -1, -1, -15, 15, 60, -35, -63, 28, 24, -9, -3, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Matrices modeled on: {{k, -1, 0}, {-1, 0, -1}, {0, -1, 0}} K=1 is Steinbach: A066170 These are equivalent to the central variable determinant sequences: {{y-k, -1, 0}, {-1, y, -1}, {0, -1, y}}
LINKS
FORMULA
m(n,m,d)=If[ n == m && n > 1 && m > 1, 0, If[n == m - 1 || n == m + 1, -1, If[n == m == 1, 3, 0]]]
EXAMPLE
Triangle begins:
{{3}},--> Det[{{3}}]=3
{3, -1},
{-1, -3, 1},
{-3, 2, 3, -1},
{1, 6, -3, -3, 1},
{3, -3, -9, 4,3, -1},
{-1, -9, 6, 12, -5, -3, 1}
MATHEMATICA
T[n_, m_, d_] := If[ n == m && n > 1 && m > 1, 0, If[n == m - 1 || n == m + 1, -1, If[n == m == 1, 3, 0]]] M[d_] := Table[T[n, m, d], {n, 1, d}, {m, 1, d}] Table[M[d], {d, 1, 10}] Table[Det[M[d]], {d, 1, 10}] Table[Det[M[d] - x*IdentityMatrix[d]], {d, 1, 10}] a = Join[{M[1]}, Table[CoefficientList[Det[M[d] - x*IdentityMatrix[ d]], x], {d, 1, 10}]] Flatten[a] MatrixForm[a]
PROG
(Sage)
@CachedFunction
def A124039(n, k): # With T(0, 0) = 1!
if n< 0: return 0
if n==0: return 1 if k == 0 else 0
h = 3*A124039(n-1, k) if n==1 else 0
return A124039(n-1, k-1) - A124039(n-2, k) - h
for n in (0..9): [A124039(n, k) for k in (0..n)] # Peter Luschny, Nov 20 2012
CROSSREFS
Cf. A066170.
Sequence in context: A303992 A365213 A126717 * A350617 A337743 A335624
KEYWORD
uned,tabl,sign
AUTHOR
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 09:49 EDT 2024. Contains 371967 sequences. (Running on oeis4.)