[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Revision History for A150460 (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), (0, 1, -1), (1, 0, 1), (1, 1, -1), (1, 1, 0)}.
(history; published version)
#4 by Wesley Ivan Hurt at Fri Dec 29 00:13:15 EST 2023
STATUS

editing

approved

#3 by Wesley Ivan Hurt at Fri Dec 29 00:13:14 EST 2023
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), (0, 1, -1), (1, 0, 1), (1, 1, -1), (1, 1, 0)}.

STATUS

approved

editing

#2 by Russ Cox at Fri Mar 30 18:54:21 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), (0, 1, -1), (1, 0, 1), (1, 1, -1), (1, 1, 0)}

DATA

1, 2, 7, 25, 97, 390, 1611, 6794, 29091, 126090, 551977, 2436019, 10824817, 48383210, 217343673, 980622641, 4441459717, 20184954064, 92013044261, 420585882547, 1927209851761, 8850616244232, 40728874603093, 187776530443546, 867211015595651, 4011392950788858, 18582390286521855, 86198246458247689

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, -1 + j, k, -1 + n] + aux[-1 + i, -1 + j, 1 + k, -1 + n] + aux[-1 + i, j, -1 + k, -1 + n] + aux[i, -1 + 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