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!)
A080322 Determinant of the n X n tridiagonal matrix M with the elements on the diagonals equal to 1, except M(n,n-1)=M(n-1,n)=n. 1
-3, -9, -1, 24, 36, 1, -63, -81, -1, 120, 144, 1, -195, -225, -1, 288, 324, 1, -399, -441, -1, 528, 576, 1, -675, -729, -1, 840, 900, 1, -1023, -1089, -1, 1224, 1296, 1, -1443, -1521, -1, 1680, 1764, 1, -1935, -2025, -1, 2208, 2304, 1, -2499, -2601, -1, 2808, 2916, 1, -3135, -3249, -1, 3480, 3600, 1, -3843 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
a(n+2)=A010892(n+1)-(n+2)^2*A010892(n)
LINKS
FORMULA
G.f.: -x^2*(3-8x^2+6x^3-3x^4+x^5)/(1-x+x^2)^3.
From Iain Fox, Feb 26 2018: (Start)
a(n) = 3*a(n-1) - 6*a(n-2) + 7*a(n-3) - 6*a(n-4) + 3*a(n-5) - a(n-6).
a(3*k+1) = (-1)^k, where k is an integer >= 1.
(End)
MATHEMATICA
CoefficientList[Series[ -(3-8x^2+6x^3-3x^4+x^5)/(1-x+x^2)^3, {x, 0, 70}], x]
PROG
(PARI) a(n) = matdet(matrix(n, n, i, j, if(abs(i-j) <= 1, if((i==n || j==n) && i!=j, n, 1), 0))) \\ Iain Fox, Feb 26 2018
(PARI) first(n) = Vec(-x^2*(3 - 8*x^2 + 6*x^3 - 3*x^4 + x^5)/(1 - x + x^2)^3 + O(x^(n+2))) \\ Iain Fox, Feb 26 2018
CROSSREFS
Sequence in context: A019817 A243526 A329214 * A126179 A304249 A128727
KEYWORD
easy,sign
AUTHOR
Mario Catalani (mario.catalani(AT)unito.it), Feb 14 2003
EXTENSIONS
G.f. corrected by Iain Fox, Feb 26 2018
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 11:24 EDT 2024. Contains 371967 sequences. (Running on oeis4.)