[go: up one dir, main page]

login
Revision History for A151079 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Number of walks within N^3 (the first octant of Z^3) starting at (0,0,0) and consisting of n steps taken from {(-1, -1, 0), (-1, 0, -1), (0, 1, 1), (1, 0, 0), (1, 0, 1)}.
(history; published version)
#4 by Wesley Ivan Hurt at Sun Apr 21 22:21:42 EDT 2024
STATUS

editing

approved

#3 by Wesley Ivan Hurt at Sun Apr 21 22:21:40 EDT 2024
NAME

Number of walks within N^3 (the first octant of Z^3) starting at (0,0,0) and consisting of n steps taken from {(-1, -1, 0), (-1, 0, -1), (0, 1, 1), (1, 0, 0), (1, 0, 1)}.

STATUS

approved

editing

#2 by Russ Cox at Fri Mar 30 18:54:25 EDT 2012
AUTHOR

_Manuel Kauers (manuel(AT)kauers.de), _, Nov 18 2008

Discussion
Fri Mar 30
18:54
OEIS Server: https://oeis.org/edit/global/269
#1 by N. J. A. Sloane at Fri Jan 09 03:00:00 EST 2009
NAME

Number of walks within N^3 (the first octant of Z^3) starting at (0,0,0) and consisting of n steps taken from {(-1, -1, 0), (-1, 0, -1), (0, 1, 1), (1, 0, 0), (1, 0, 1)}

DATA

1, 3, 10, 41, 168, 727, 3219, 14385, 65613, 300679, 1392830, 6492134, 30415783, 143309584, 677504561, 3216099178, 15311310131, 73103177454, 349911386579, 1678491213789, 8068384917616, 38852770111657, 187412268123453, 905363554615997, 4379869444310765, 21215628878755604, 102888394500800977

OFFSET

0,2

LINKS

A. Bostan and M. Kauers, 2008. Automatic Classification of Restricted Lattice Walks, <a href="http://arxiv.org/abs/0811.2899">ArXiv 0811.2899</a>.

MATHEMATICA

aux[i_Integer, j_Integer, k_Integer, n_Integer] := Which[Min[i, j, k, n] < 0 || Max[i, j, k] > n, 0, n == 0, KroneckerDelta[i, j, k, n], True, aux[i, j, k, n] = aux[-1 + i, j, -1 + k, -1 + n] + aux[-1 + i, j, k, -1 + n] + aux[i, -1 + j, -1 + k, -1 + n] + aux[1 + i, j, 1 + k, -1 + n] + aux[1 + i, 1 + j, k, -1 + n]]; Table[Sum[aux[i, j, k, n], {i, 0, n}, {j, 0, n}, {k, 0, n}], {n, 0, 10}]

KEYWORD

nonn,walk

AUTHOR

Manuel Kauers (manuel(AT)kauers.de), Nov 18 2008

STATUS

approved