OFFSET
1,2
LINKS
F. T. Boesch and H. Prodinger, Spanning tree formulas and Chebyshev polynomials, Graphs Combinat. 2 (1986) 191-200.
FORMULA
R_n(m) = n*2^(m-1)* (T(n,1+m/2)-1)^(m-1)/m, where T(n,x) are Chebyshev polynomials, A008310.
Each column of the array is a linear divisibility sequence. Conjecturally, the k-th column satisfies a linear recurrence of order 4*k - 2. - Peter Bala, May 04 2014
EXAMPLE
The array starts in row n=1 as:
1, 1, 3, 16, 125
2, 12, 294, 16384, 1640250
3, 75, 11664, 5647152, 6291456000
4, 384, 367500, 1528823808,
5, 1805, 10609215,
MAPLE
MATHEMATICA
r[n_, m_] := n*2^(m-1)*(ChebyshevT[n, 1+m/2]-1)^(m-1)/m; Table[r[n-m, m], {n, 2, 9}, {m, 1, n-1}] // Flatten (* Jean-François Alcover, Jan 10 2014 *)
CROSSREFS
KEYWORD
AUTHOR
R. J. Mathar, Mar 13 2010
STATUS
approved