Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Revision History for A151488

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Number of walks within N^2 (the first quadrant of Z^2) starting at (0,0), ending on the vertical axis and consisting of n steps taken from {(-1, 1), (0, -1), (0, 1), (1, -1), (1, 0), (1, 1)}.
(history; published version)
#7 by Wesley Ivan Hurt at Mon Jan 01 02:34:31 EST 2024
STATUS

editing

approved

#6 by Wesley Ivan Hurt at Mon Jan 01 02:34:30 EST 2024
NAME

Number of walks within N^2 (the first quadrant of Z^2) starting at (0,0), ending on the vertical axis and consisting of n steps taken from {(-1, 1), (0, -1), (0, 1), (1, -1), (1, 0), (1, 1)}.

STATUS

approved

editing

#5 by N. J. A. Sloane at Sun Dec 04 13:57:04 EST 2016
LINKS

M. Bousquet-Melou Mélou and M. Mishna, 2008. Walks with small steps in the quarter plane, <a href="http://arxiv.org/abs/0810.4387">ArXiv 0810.4387</a>.

Discussion
Sun Dec 04
13:57
OEIS Server: https://oeis.org/edit/global/2574
#4 by Russ Cox at Fri Mar 30 18:54:28 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
#3 by N. J. A. Sloane at Mon Jul 04 13:12:07 EDT 2011
LINKS

M. BouquetBousquet-Melou and M. Mishna, 2008. Walks with small steps in the quarter plane, <a href="http://arxiv.org/abs/0810.4387">ArXiv 0810.4387</a>.

Discussion
Mon Jul 04
13:12
OEIS Server: https://oeis.org/edit/global/12
#2 by N. J. A. Sloane at Fri Feb 27 03:00:00 EST 2009
NAME

Number of walks within N^2 (the first quadrant of Z^2) starting at (0,0), ending on the vertical axis, and consisting of n steps taken from {(-1, 1), (0, -1), (0, 1), (1, -1), (1, 0), (1, 1)}

KEYWORD

nonn,walk,new

#1 by N. J. A. Sloane at Fri Jan 09 03:00:00 EST 2009
NAME

Number of walks within N^2 (the first quadrant of Z^2) starting at (0,0), ending on the vertical axis, and consisting of n steps taken from {(-1, 1), (0, -1), (0, 1), (1, -1), (1, 0), (1, 1)}

DATA

1, 1, 4, 13, 51, 207, 887, 3907, 17689, 81598, 382809, 1819544, 8748842, 42469534, 207900762, 1025103628, 5087012042, 25386558037, 127331796354, 641546957748, 3245566636974, 16479875939807, 83960810598237, 429073494547532, 2198921270348087, 11298292559488283, 58190917785493662, 300372279767201773

OFFSET

0,3

LINKS

M. Bouquet-Melou and M. Mishna, 2008. Walks with small steps in the quarter plane, <a href="http://arxiv.org/abs/0810.4387">ArXiv 0810.4387</a>.

MATHEMATICA

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

KEYWORD

nonn,walk

AUTHOR

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

STATUS

approved