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!)
A328297 Number T(n,k) of n-step walks on cubic lattice starting at (0,0,0), ending at (x,y,z) with x=k, remaining in the first (nonnegative) octant and using steps (0,0,1), (0,1,0), (1,0,0), (-1,1,1), (1,-1,1), and (1,1,-1); triangle T(n,k), n>=0, 0<=k<=n, read by rows. 6

%I #27 May 12 2020 11:50:27

%S 1,2,1,5,6,1,16,26,14,1,58,112,93,30,1,228,489,522,288,62,1,945,2182,

%T 2737,2040,825,126,1,4072,9934,13934,12642,7210,2254,254,1,18078,

%U 46016,70058,72994,52086,23878,5969,510,1,82172,216322,350648,404788,338520,198795,75570,15468,1022,1

%N Number T(n,k) of n-step walks on cubic lattice starting at (0,0,0), ending at (x,y,z) with x=k, remaining in the first (nonnegative) octant and using steps (0,0,1), (0,1,0), (1,0,0), (-1,1,1), (1,-1,1), and (1,1,-1); triangle T(n,k), n>=0, 0<=k<=n, read by rows.

%H Alois P. Heinz, <a href="/A328297/b328297.txt">Rows n = 0..140, flattened</a>

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

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Self-avoiding_walk">Self-avoiding walk</a>

%e Triangle T(n,k) begins:

%e 1;

%e 2, 1;

%e 5, 6, 1;

%e 16, 26, 14, 1;

%e 58, 112, 93, 30, 1;

%e 228, 489, 522, 288, 62, 1;

%e 945, 2182, 2737, 2040, 825, 126, 1;

%e 4072, 9934, 13934, 12642, 7210, 2254, 254, 1;

%e ...

%p b:= proc(l) option remember; `if`(l[-1]=0, 1, (r-> add(

%p add(add(`if`(i+j+k=1, (h-> `if`(h[1]<0, 0, b(h)))(

%p sort(l-[i, j, k])), 0), k=r), j=r), i=r))([$-1..1]))

%p end:

%p T:= (n, k)-> add(b(sort([k, j, n-k-j])), j=0..n-k):

%p seq(seq(T(n, k), k=0..n), n=0..12);

%t b[l_] := b[l] = If[Last[l] == 0, 1, Sum[If[i + j + k == 1, Function[h, If[h[[1]] < 0, 0, b[h]]][Sort[l - {i, j, k}]], 0], {i, {-1, 0, 1}}, {j, {-1, 0, 1}}, {k, {-1, 0, 1}}]];

%t T[n_, k_] := Sum[b[Sort[{k, j, n - k - j}]], {j, 0, n - k}];

%t Table[T[n, k], {n, 0, 12}, {k, 0, n}] // Flatten (* _Jean-François Alcover_, May 12 2020, after Maple *)

%Y Column k=0 gives A328296.

%Y Main diagonal gives A000012.

%Y T(n,n-1) gives A000918(n+1).

%Y T(2n,n) gives A328427.

%Y Row sums give A328295.

%Y Cf. A038207, A328299, A328300.

%K nonn,tabl,walk

%O 0,2

%A _Alois P. Heinz_, Oct 11 2019

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 18 18:49 EDT 2024. Contains 371781 sequences. (Running on oeis4.)