login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A338614 Number of permutations p of [n] such that |p(i) - p(i-1)| <= 3 and |p(i) - p(i-2)| <= 4. 2

%I #10 Nov 14 2020 20:45:12

%S 1,1,2,6,24,72,124,210,394,810,1652,3168,5816,10640,19794,37292,70298,

%T 131618,245146,456430,851670,1592008,2976326,5559808,10379010,

%U 19374184,36175422,67562524,126185322,235650426,440038528

%N Number of permutations p of [n] such that |p(i) - p(i-1)| <= 3 and |p(i) - p(i-2)| <= 4.

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Permutation">Permutation</a>

%p b:= proc(s, x, y) option remember; `if`(s={}, 1, add(

%p `if`((x=0 or abs(x-j)<=4) and (y=0 or abs(y-j)<=3),

%p b(s minus {j}, y, j), 0), j=s))

%p end:

%p a:= n-> b({$1..n}, 0$2):

%p seq(a(n), n=0..20);

%Y Cf. A263690, A263696, A263745, A333833, A338738.

%K nonn,more

%O 0,3

%A _Alois P. Heinz_, Nov 03 2020

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 12:43 EDT 2024. Contains 371940 sequences. (Running on oeis4.)