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.

A328426 Number of 2n-step walks on cubic lattice starting at (0,0,0), ending at (0,n,n) and using steps (0,0,1), (0,1,0), (1,0,0), (-1,1,1), (1,-1,1), and (1,1,-1).

Original entry on oeis.org

1, 4, 72, 1480, 33880, 819504, 20562696, 529399728, 13892650200, 369988864960, 9969694635472, 271217782469088, 7436910593958664, 205289086309888000, 5699233814774374800, 159004177074207384480, 4455230052707022818520, 125307788218001246547360
Offset: 0

Views

Author

Alois P. Heinz, Oct 15 2019

Keywords

Comments

These walks are not restricted to the first (nonnegative) octant.

Crossrefs

Cf. A328347.

Programs

  • Maple
    b:= proc(l) option remember; `if`(l[-1]=0, 1, (r-> add(add(add(
          `if`(i+j+k=1, (h-> `if`((w->w<0 or w b(sort([0, n$2])):
    seq(a(n), n=0..23);
  • Mathematica
    b[l_] := b[l] = If[Last[l] == 0, 1, Function[r, Sum[If[i + j + k == 1, Function[h, If[Function[w, w < 0 || w < Max[Map[Abs, h]]][Total[h]], 0, b[h]]][Sort[l - {i, j, k}]], 0], {i, r}, {j, r}, {k, r}]][{-1, 0, 1}]];
    a[n_] := b[Sort[{0, n, n}]];
    a /@ Range[0, 23] (* Jean-François Alcover, May 13 2020, after Maple *)

Formula

a(n) = A328347(2n,n).