cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Previous Showing 11-12 of 12 results.

A225220 Number of lattice paths without interior points from {n}^4 to {0}^4 using steps that decrement one component by 1.

Original entry on oeis.org

1, 24, 1944, 132000, 8059800, 471369024, 27141228576, 1557898303104, 89658680843160, 5186780199744000, 301901643282754944, 17682835350047107968, 1041936263500353390624, 61736371470508652400000, 3676501723843796568912000, 219941299213693627194432000
Offset: 0

Views

Author

Alois P. Heinz, May 02 2013

Keywords

Comments

An interior point p = (p_1, ..., p_4) has 4 components with 0

Crossrefs

Column k=4 of A225094.

Programs

  • Maple
    b:= proc(n, l) b(n, l):= `if`(l[4]=0, 1, `if`(l[1]>0 and l[4] b(n, [n$4]):
    seq(a(n), n=0..20);

A225221 Number of lattice paths without interior points from {4}^n to {0}^n using steps that decrement one component by 1.

Original entry on oeis.org

1, 0, 2, 2550, 8059800, 57010275000, 801652441590000, 20393765925943410000, 872251852597491366000000, 59194435154364480600630000000, 6083868079208428011546743700000000, 911478727065442542708032537906700000000, 192819174440695429545254134608441231600000000
Offset: 0

Author

Alois P. Heinz, May 02 2013

Keywords

Comments

An interior point p = (p_1, ..., p_n) has n>0 components with 0

Crossrefs

Row n=4 of A225094.

Programs

  • Maple
    b:= proc(n, l) option remember; local m; m:= nops(l);
          `if`(m=0 or l[m]=0, 1, `if`(l[1]>0 and l[m] b(4, [4$n]):
    seq(a(n), n=0..12);
Previous Showing 11-12 of 12 results.