[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A064670
Triangle T(n,k) (1 <= k <= n) where the first column (T(n,1)) is the sequence of secant numbers A000364.
0
1, 1, 4, 5, 20, 36, 61, 244, 504, 576, 1385, 5540, 11916, 17280, 14400, 50521, 202084, 442224, 697536, 792000, 518400, 2702765, 10811060, 23870196, 39202560, 50198400, 47174400, 25401600, 199360981, 797443924, 1769923944
OFFSET
1,3
COMMENTS
Replacing m*m by m*(m+1) in the formula, the first column gives the tangent numbers A000182.
FORMULA
T(n+1, m) = m*m*Sum_{k = m-1..n} T(n, k) (T(n, 0) = 0).
EXAMPLE
T(4,3) = 9*(T(3,2) + T(3,3)) = 9*(20+36) = 504.
MATHEMATICA
T[1, 1] = 1; T[n_, k_] /; 1 <= k <= n := T[n, k] = k^2*Sum[T[n-1, j], {j, k-1, n-1}]; T[_, _] = 0; Table[T[n, k], {n, 1, 8}, {k, 1, n}] // Flatten (* Jean-François Alcover, Oct 25 2016 *)
CROSSREFS
KEYWORD
easy,nice,nonn,tabl
AUTHOR
Jose L. Arregui (arregui(AT)posta.unizar.es), Oct 09 2001
EXTENSIONS
More terms from Philippe Deléham, Sep 22 2005
STATUS
approved