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!)
A322782 Number of lattice paths from {2}^n to {0}^n using steps that decrement one component by 1 such that for each point (p_1,p_2,...,p_n) we have abs(p_{i}-p_{i+1}) <= 1 and abs(p_{1}-p_{n}) <= 1. 1
1, 1, 4, 36, 720, 23400, 1123200, 74440800, 6509318400, 725829724800, 100511918784000, 16922530756454400, 3404178048774758400, 806369627582929612800, 222159405758654317363200, 70435689828806256514560000, 25463217531292911649057996800, 10411540182139235537714555289600 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n * A318191(2,n) for n > 0. - Alois P. Heinz, Jan 09 2019
MAPLE
b:= proc(l) option remember; (n-> `if`(n<2 or max(l[])=0, 1,
add(`if`(l[i]=0 or 1<abs(l[`if`(i=1, 0, i)-1]-l[i]+1)
or 1<abs(l[`if`(i=n, 0, i)+1]-l[i]+1), 0,
b(subsop(i=l[i]-1, l))), i=1..n)))(nops(l))
end:
a:= n-> b([2$n]):
seq(a(n), n=0..12); # Alois P. Heinz, Jan 05 2019
MATHEMATICA
b[l_] := b[l] = With[{n = Length[l]}, If[n < 2 || Max[l ] == 0, 1, Sum[If[ l[[i]] == 0 || 1 < Abs[l[[If[i == 1, 0, i] - 1]] - l[[i]] + 1] || 1 < Abs[l[[If[i == n, 0, i] + 1]] - l[[i]] + 1], 0, b[ReplacePart[l, i -> l[[i]] - 1]]], {i, n}]]];
a[n_] := b[Table[2, {n}]];
a /@ Range[0, 12] (* Jean-François Alcover, May 13 2020, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A163887 A156630 A289545 * A145565 A360903 A214669
KEYWORD
nonn,walk
AUTHOR
Woong-Gi Jung, Dec 26 2018
EXTENSIONS
More terms from Alois P. Heinz, Dec 30 2018
STATUS
approved

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 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)