cp's OEIS Frontend

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.

A211368 Array read by antidiagonals: T(m,n) = Sum(1<=i<=m) ( n + 2(i-1) )!

Original entry on oeis.org

1, 2, 7, 6, 26, 127, 24, 126, 746, 5167, 120, 744, 5166, 41066, 368047, 720, 5160, 41064, 368046, 3669866, 40284847, 5040, 41040, 368040, 3669864, 40284846, 482671466, 6267305647, 40320, 367920, 3669840, 40284840, 482671464, 6267305646
Offset: 1

Views

Author

Tilman Piesk, Jul 07 2012

Keywords

Comments

Index numbers (compare A055089) of rows of adjacent transpositions.

Examples

			T(3,2) = Sum( 1 <= i <= 3 ) [ ( 2 + 2(i-1) )! ]
= (2+0)! + (2+2)! + (2+4)!
= 2 + 24 + 720
= 746
		

Crossrefs

Cf. A055089.