OFFSET
1,2
COMMENTS
When the numbers denote finite permutations (as row numbers of A055089) these are the circular shifts to the left within an interval. The subsequence A007489 then denotes the circular shifts that start with the first element. Compare A051683 for circular shifts to the right. - Tilman Piesk, Apr 29 2017
LINKS
Tilman Piesk, Table of n, a(n) for n = 1..2016
Tilman Piesk, Circular shifts to the left (Arrays of permutations)
EXAMPLE
T(3,2) = Sum( 2 <= i <= 4 ) i! = 2! + 3! + 4! = 32.
The array starts:
1, 2, 6, 24, 120, 720, ...
3, 8, 30, 144, 840, 5760, ...
9, 32, 150, 864, 5880, 46080, ...
33, 152, 870, 5904, 46200, 408960, ...
153, 872, 5910, 46224, 409080, 4037760, ...
873, 5912, 46230, 409104, 4037880, 43954560, ...
MATHEMATICA
Table[Function[m, Sum[ i!, {i, n, m + n - 1}]][k - n + 1], {k, 9}, {n, k, 1, -1}] // Flatten (* Michael De Vlieger, Apr 30 2017 *)
CROSSREFS
KEYWORD
AUTHOR
Tilman Piesk, Jul 07 2012
STATUS
approved