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!)
A263166 Number of lattice paths starting at {n}^8 and ending when any component equals 0, using steps that decrement one or more components by one. 2
1, 255, 277284181, 7671206130046515, 463841686707958609540881, 39946850792952097272345707272335, 4211153593189257990239568354710957472133, 506051495006579137756029271328016744207715324419, 66656513992169790340795231563272399566454175106315563265 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
MAPLE
g():= seq(convert(n, base, 2)[1..8], n=257..511):
b:= proc(l) option remember;
`if`(l[1]=0, 1, add(b(sort(l-h)), h=g()))
end:
a:= n-> b([n$8]):
seq(a(n), n=0..8);
MATHEMATICA
g[] = Table[Reverse[IntegerDigits[n, 2]][[;; 8]], {n, 2^8 + 1, 2^9 - 1}];
b[l_] := b[l] = If[l[[1]] == 0, 1, Sum[b[Sort[l - h]], {h, g[]}]];
a[n_] := b[Table[n, {8}]];
a /@ Range[0, 8] (* Jean-François Alcover, Apr 25 2020, after Alois P. Heinz *)
CROSSREFS
Column k=8 of A263159.
Sequence in context: A221214 A212933 A270876 * A139305 A348431 A351248
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 May 6 16:55 EDT 2024. Contains 372297 sequences. (Running on oeis4.)