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.

A203902 a(n)=f(a(n-1)+1,a(n-2)+1,a(n-3)+1), where f(x,y,z)=yz+zx+xy and (a(1),a(2),a(3))=(0,0,1).

Original entry on oeis.org

0, 0, 1, 5, 20, 180, 5013, 1016629, 5282300384, 5396635591915760, 28512136651893281578375965, 153869762066843605647265362776201153415021, 4387155683474529138873327728747664927423052537019723373711103123120
Offset: 1

Views

Author

Clark Kimberling, Jan 07 2012

Keywords

Comments

For a guide to related sequences, see A203761.

Crossrefs

Cf. A203761.

Programs

  • Mathematica
    a[1] = 0; a[2] = 0; a[3] = 1;
    a[n_] := SymmetricPolynomial[2, {1 + a[n - 1], 1 + a[n - 2], 1 + a[n - 3]}]
    Table[a[n], {n, 1, 13}]  (* A203902 *)