This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A120058 #13 Apr 08 2016 08:44:20 %S A120058 1,2,-1,3,-4,2,4,-9,10,-4,5,-16,28,-24,8,6,-25,60,-80,56,-16,7,-36, %T A120058 110,-200,216,-128,32,8,-49,182,-420,616,-560,288,-64,9,-64,280,-784, %U A120058 1456,-1792,1408,-640,128,10,-81,408,-1344,3024,-4704,4992,-3456,1408,-256 %N A120058 Coefficients for obtaining A120057 from Bell numbers. %C A120058 Appears to be essentially the same as A056863, but (as of Jun 06 2006) that sequence definition is unclear and there are discrepencies in the signs. %C A120058 Alternating column sums appear to be 3^n. %F A120058 A120057(n,k) = sum_{i=1,k} T(n,i)*B(n-i+1). %F A120058 T(n,k) = Sum_j A120095(n,j) * S1(j,n-k+1), where S1 is the Stirling numbers of the first kind (A008275). %F A120058 Unsigned version, as an infinite lower triangular matrix, equals A007318 * A134315. - _Gary W. Adamson_, Oct 19 2007 %F A120058 T(n,k) = 2*T(n-1,k) - 2*T(n-1,k-1) + 2*T(n-2,k-1) - T(n-2,k). - _Philippe Deléham_, Feb 27 2012 %e A120058 Table starts: %e A120058 1 %e A120058 2,-1 %e A120058 3,-4,2 %e A120058 4,-9,10,-4 %e A120058 5,-16,28,-24,8 %e A120058 6,-25,60,-80,56,-16 %t A120058 T[n_, 1] := n; T[n_, n_] := (-1)^(n+1)*2^(n-2); T[n_, k_] /; 2 <= k <= n-1 := T[n, k] = 2*T[n-1, k] - 2*T[n-1, k-1] + 2*T[n-2, k-1] - T[n-2, k]; T[_, _] = 0; Table[T[n, k], {n, 1, 10}, {k, 1, n}] // Flatten (* _Jean-François Alcover_, Apr 08 2016, after _Philippe Deléham_ *) %Y A120058 Cf A120057, A000110, A056863. %Y A120058 Cf. A008275, A120095. %Y A120058 Cf. A134315. %K A120058 sign,tabl %O A120058 1,2 %A A120058 _Franklin T. Adams-Watters_, Jun 06 2006, Jun 07 2006