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!)
A277248 Number of planar walks starting at (1,1), ending at (3n,0), remaining in the first quadrant and using steps (-1,2) and (2,-1). 1
1, 2, 6, 24, 108, 528, 2724, 14616, 80760, 456552, 2628504, 15360216, 90879096, 543336912, 3277586136, 19924733088, 121943223576, 750756116376, 4646484480552, 28892787031008, 180420486241776, 1130930538186360, 7113550964713848, 44885329202906448 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
M. Bousquet-Mélou, M. Petkovsek, Walks confined in a quadrant are not always D-finite, Theoretical Computer Science, 307(2003): 257-276.
Ira M. Gessel, A probabilistic method for lattice path enumeration, Journal of statistical planning and inference, 14 (1986), 49-58.
FORMULA
a(n) ~ c * (27/4)^n / n^(3/2), where c = 0.06045583689606517807688682344735167414726208387456561322459238109992522838... . - Vaclav Kotesovec, Oct 07 2016
MAPLE
b:= proc(l) option remember; `if`(l=[1$2], 1, add((p->
`if`(p[1]<0, 0, b(p)))(sort((l-x))), x=[[-1, 2], [2, -1]]))
end:
a:= n-> b([0, 3*n]):
seq(a(n), n=1..30); # Alois P. Heinz, Oct 06 2016
MATHEMATICA
b[l_List] := b[l] = If[l == {1, 1}, 1, Sum[Function[p, If[p[[1]]<0, 0, b[p]]][Sort[l-x]], {x, {{-1, 2}, {2, -1}}}]]; a[n_] := b[{0, 3n}]; Table[a[n], {n, 1, 30}] (* Jean-François Alcover, Dec 04 2016 after Alois P. Heinz *)
CROSSREFS
Cf. A048116.
Sequence in context: A356782 A094433 A178594 * A189840 A189255 A324591
KEYWORD
nonn,walk
AUTHOR
Feng Jishe, Oct 06 2016
EXTENSIONS
More terms from Alois P. Heinz, Oct 06 2016
STATUS
approved

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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)