A292174 Number of permutations p of [n] such that 0p has a nonincreasing jump sequence beginning with eight.
683, 2400, 6471, 16817, 47123, 141118, 469662, 1609176, 5935728, 16491722, 43160750, 110362553, 289385731, 767677544, 2119594253, 5810801164, 16404580983, 42548928025, 106693231930, 263735820713, 650860901400, 1621682678763, 4064296654515, 10129808852568
Offset: 8
Keywords
Examples
a(8) = 683: 81234567, 81324567, 81342567, 81345267, 81345627, 81345672, 81352467, 81352647, 81352674, 81354267, ..., 86473251, 86473521, 86475321, 86543217, 86543271, 86543721, 86547321, 86574321, 86754321, 87654321.
Links
- Alois P. Heinz, Table of n, a(n) for n = 8..2000
Crossrefs
Column k=8 of A291684.
Programs
-
Maple
b:= proc(u, o, t) option remember; `if`(u+o=0, 1, add(b(u-j, o+j-1, j), j=1..min(t, u))+ add(b(u+j-1, o-j, j), j=1..min(t, o))) end: a:= n-> b(0, n, 8)-b(0, n, 7): seq(a(n), n=8..50);
Comments