login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A263168
Number of lattice paths starting at {n}^10 and ending when any component equals 0, using steps that decrement one or more components by one.
2
1, 1023, 208994018773, 3864094036317649535283, 198305312034897003898098826655121, 16102861078300336871094550725929002523470383, 1698612808615154132767781717350125427082238529142835109, 212216707280526234296212923289763064481087995125148762713351022339
OFFSET
0,2
LINKS
MAPLE
g():= seq(convert(n, base, 2)[1..10], n=1025..2047):
b:= proc(l) option remember;
`if`(l[1]=0, 1, add(b(sort(l-h)), h=g()))
end:
a:= n-> b([n$10]):
seq(a(n), n=0..5);
CROSSREFS
Column k=10 of A263159.
Sequence in context: A069411 A069437 A212934 * A336779 A030001 A176764
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 11 2015
STATUS
approved