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”).

A134833
Alternating row sums of triangle A134832.
2
1, -1, 1, 0, -2, 12, -16, 144, 368, 4768, 39488, 412288, 4577280, 55671808, 731390976, 10335518720, 156303439872, 2518984822784, 43099089166336, 780268880543744, 14902336357040128, 299452809649520640, 6315501510334480384, 139485953831272710144, 3219718099932104622080
OFFSET
0,5
LINKS
FORMULA
a(n) = Sum_{k=0..n} A134832(n,k)*(-1)^k for n>=0.
MATHEMATICA
A000757[n_] := (-1)^n + Sum[(-1)^k*n!/((n - k)*k!), {k, 0, n - 1}]; a[n_, n_] = 1; a[n_, 0] := A000757[n]; a[n_, k_] := a[n, k] = n/k*a[n - 1, k - 1]; Table[Sum[a[n, k]*(-1)^k, {k, 0, n}], {n, 0, 10}] (* G. C. Greubel, Nov 10 2016 *)
CROSSREFS
Cf. A000142 (factorials as row sums of triangle A134832).
Sequence in context: A327570 A057123 A358783 * A057827 A266802 A082407
KEYWORD
sign,easy
AUTHOR
Wolfdieter Lang, Jan 21 2008
STATUS
approved