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.

A005982 3 up, 3 down, 3 up, ... permutations of length 3n+1.

Original entry on oeis.org

1, 20, 1301, 202840, 61889101, 32676403052, 27418828825961, 34361404413755056, 61335081309931829401, 150221740688275657957940, 489799709605132718770274141, 2073641570051429601078643837960, 11163099186064084100687107863253381
Offset: 1

Views

Author

Keywords

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
  • P. R. Stein, personal communication.

Crossrefs

Cf. A229884.

Programs

  • Maple
    b:= proc(u, o, t) option remember; `if`(u+o=0, 1, add(`if`(t=3,
           b(o-j, u+j-1, 1), b(u+j-1, o-j, t+1)), j=1..o))
        end:
    a:= n-> b(0, 3*n+1, 0):
    seq(a(n), n=1..20);  # Alois P. Heinz, Oct 06 2013
  • Mathematica
    b[u_, o_, t_] := b[u, o, t] = If[u+o == 0, 1, Sum[If[t == 3, b[o-j, u+j-1, 1], b[u+j-1, o-j, t+1]], {j, 1, o}]] ; a[n_] := b[0, 3*n+1, 0]; Table[a[n], {n, 1, 20}] (* Jean-François Alcover, Nov 25 2014, after Alois P. Heinz *)

Extensions

Typo in name fixed by Alois P. Heinz, Oct 06 2013