OFFSET
1,2
LINKS
Clark Kimberling, Polynomials associated with reciprocation, JIS 12 (2009) 09.3.4, section 5.
FORMULA
T(n,k) = C(n+1,k+1)*sin(Pi*(k+1)/2). - Paul Barry, May 21 2006
EXAMPLE
The trigonometric expansion of sin(4x) is 4*cos(x)^3*sin(x) - 4*cos(x)*sin(x)^3, so the fourth row is 4, 0, -4, 0.
Triangle begins:
1
2 0
3 0 -1
4 0 -4 0
5 0 -10 0 1
6 0 -20 0 6 0
7 0 -35 0 21 0 -1
8 0 -56 0 56 0 -8 0
MATHEMATICA
Flatten[ Table[ Plus @@ CoefficientList[ TrigExpand[ Sin[n*x]], {Sin[x], Cos[x]}], {n, 13}]]
CROSSREFS
KEYWORD
sign,tabl
AUTHOR
Robert G. Wilson v, Jul 06 2004
STATUS
approved