%I #17 Aug 18 2024 16:42:54
%S 1,1,4,5,20,36,61,244,504,576,1385,5540,11916,17280,14400,50521,
%T 202084,442224,697536,792000,518400,2702765,10811060,23870196,
%U 39202560,50198400,47174400,25401600,199360981,797443924,1769923944
%N Triangle T(n,k) (1 <= k <= n) where the first column (T(n,1)) is the sequence of secant numbers A000364.
%C Replacing m*m by m*(m+1) in the formula, the first column gives the tangent numbers A000182.
%F T(n+1, m) = m*m*Sum_{k = m-1..n} T(n, k) (T(n, 0) = 0).
%e T(4,3) = 9*(T(3,2) + T(3,3)) = 9*(20+36) = 504.
%t 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 *)
%Y Cf. A064190, A000182, A000354.
%K easy,nice,nonn,tabl
%O 1,3
%A Jose L. Arregui (arregui(AT)posta.unizar.es), Oct 09 2001
%E More terms from _Philippe Deléham_, Sep 22 2005