login

Revision History for A151453

(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 2 n steps taken from {(-1, 0), (-1, 1), (1, -1), (1, 0), (1, 1)}.
(history; published version)
#7 by Wesley Ivan Hurt at Mon Jan 01 02:39:43 EST 2024
STATUS

editing

approved

#6 by Wesley Ivan Hurt at Mon Jan 01 02:39:41 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 2 n steps taken from {(-1, 0), (-1, 1), (1, -1), (1, 0), (1, 1)}.

STATUS

approved

editing

#5 by N. J. A. Sloane at Sun Dec 04 13:57:03 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:06 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 2 n steps taken from {(-1, 0), (-1, 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 2 n steps taken from {(-1, 0), (-1, 1), (1, -1), (1, 0), (1, 1)}

DATA

1, 4, 42, 578, 9166, 158242, 2891042, 54993704, 1078134132, 21636311154, 442364872960, 9182624116200, 193028135699066, 4100926056901840, 87917821096174026, 1899625977112716534, 41325695763293346504, 904431694783758568086, 19899310516710760870766, 439903811117457581870242

OFFSET

0,2

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[1 + i, -1 + j, -1 + n] + aux[1 + i, j, -1 + n]]; Table[Sum[aux[0, k, 2 n], {k, 0, 2 n}], {n, 0, 25}]

KEYWORD

nonn,walk

AUTHOR

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

STATUS

approved