OFFSET
1,7
COMMENTS
For n >= 8, this is the number of permutations of [n] that avoid substrings j(j+7), 1 <= j <= n-7.
LINKS
Enrique Navarrete, Generalized K-Shift Forbidden Substrings in Permutations, arXiv:1610.06217 [math.CO], 2016.
FORMULA
For n>=8: a(n) = Sum_{j=0..n-7} (-1)^j*binomial(n-7,j)*(n-j)!.
Note a(n)/n! ~ 1/e.
EXAMPLE
a(11)=27422640 since this is the number of permutations in S11 that avoid substrings {18,29,3(10),4(11)}.
MATHEMATICA
With[{k = 8}, ConstantArray[0, k - 2]~Join~Table[Sum[(-1)^j*Binomial[n - (k - 1), j] (n - j)!, {j, 0, n - (k - 1)}], {n, k - 1, k + 12}]] (* Michael De Vlieger, Mar 26 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Enrique Navarrete, Mar 22 2017
STATUS
approved