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.

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

Original entry on oeis.org

1, 2, 13, 6, 50, 373, 24, 246, 2210, 20533, 120, 1464, 15366, 163490, 1834933, 720, 10200, 122424, 1466886, 18307490, 241335733, 5040, 81360, 1098840, 14637624, 201050886, 2892317090, 43830481333, 40320, 730800, 10967760, 160766040
Offset: 1

Views

Author

Tilman Piesk, Jul 07 2012

Keywords

Comments

Index numbers (compare A055089) of permutations like (n,1, n+1,2, n+2,3, ...).

Examples

			T(3,2) = Sum( 1 <= i <= 3 ) i * ( 2 + 2(i-1) )!
= 1*(2+0)! + 2*(2+2)! + 3*(2+4)!
= 1*2 + 2*24 + 3*720
= 2210
		

Crossrefs

Cf. A055089.

Programs

  • MATLAB
    % See Links section (the Wikiversity page).