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!)
A059834 Sum of squares of entries of Wilkinson's eigenvalue test matrix of order 2n+1. 1
0, 6, 18, 40, 76, 130, 206, 308, 440, 606, 810, 1056, 1348, 1690, 2086, 2540, 3056, 3638, 4290, 5016, 5820, 6706, 7678, 8740, 9896, 11150, 12506, 13968, 15540, 17226, 19030, 20956, 23008, 25190, 27506, 29960, 32556, 35298, 38190, 41236, 44440 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The m X m Wilkinson matrix is a symmetric tridiagonal matrix. If m = 2k + 1, its main diagonal is k, k - 1, ..., 1, 0, 1, ... k - 1, k. If m = 2k, its main diagonal is k - 1/2, k - 3/2, ..., 3/2, 1/2, 1/2, 3/2, ..., k - 3/2, k - 1/2. In both cases, it has all 1's on the diagonals next to the main diagonal and 0's elsewhere. - David Wasserman, May 24 2002
LINKS
FORMULA
a(n) = (2n^3 + 3n^2 + 13n)/3. For the matrix of order 2n, the formula is (4n^3 + 23n - 12)/6 (which is not integer-valued). - David Wasserman, May 24 2002
a(n) = sum(2*(k+1)^2+4, k=0..(n-1)). - Mike Warburton, Sep 08 2007
G.f.: 2*x*(3-3*x+2*x^2)/(1-x)^4. - Colin Barker, Apr 04 2012
EXAMPLE
The matrix of order 5:
2 1 0 0 0
1 1 1 0 0
0 1 0 1 0
0 0 1 1 1
0 0 0 1 2
PROG
(MATLAB) for i = 0:20 a(i+1) = trace( wilkinson(2*i+1)*wilkinson(2*i+1)' ); end; a
CROSSREFS
Cf. A059831.
Sequence in context: A299256 A002411 A023658 * A299263 A015224 A163983
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Feb 25 2001
EXTENSIONS
More terms from David Wasserman, May 24 2002
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 23 12:27 EDT 2024. Contains 371912 sequences. (Running on oeis4.)