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!)
A263163 Number of lattice paths starting at {n}^5 and ending when any component equals 0, using steps that decrement one or more components by one. 2
1, 31, 32461, 142090291, 944362553521, 7622403922836151, 68836844233002312181, 668865316589763487491811, 6842570537592835194176298241, 72725938463068824904583496062671, 796079042828286992045143086504942301, 8920612967950147759634381671622287341331 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
MAPLE
g():= seq(convert(n, base, 2)[1..5], n=33..63):
b:= proc(l) option remember;
`if`(l[1]=0, 1, add(b(sort(l-h)), h=g()))
end:
a:= n-> b([n$5]):
seq(a(n), n=0..12);
MATHEMATICA
g[] = Table[Reverse[IntegerDigits[n, 2]][[;; 5]], {n, 2^5 + 1, 2^6 - 1}];
b[l_] := b[l] = If[l[[1]] == 0, 1, Sum[b[Sort[l - h]], {h, g[]}]];
a[n_] := b[Table[n, {5}]];
a /@ Range[0, 12] (* Jean-François Alcover, Apr 25 2020, after Alois P. Heinz *)
CROSSREFS
Column k=5 of A263159.
Sequence in context: A176349 A262716 A033176 * A188956 A218142 A117579
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 11 2015
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 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)