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.

A014231 (Product of 3 successive Catalan numbers)/2.

Original entry on oeis.org

1, 5, 70, 1470, 38808, 1189188, 40489020, 1491345570, 58388438680, 2400295633736, 102692368441936, 4542162450316400, 206643434552856000, 9631060074695610000, 458381806260954003000, 22220282755463598704250, 1094733022441519300455000, 54717445279576990999935000
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A000108.

Programs

  • Maple
    a:= proc(n) option remember; `if`(n=0, 1,
          8*(2*n-1)*(2*n+1)*(2*n+3)*a(n-1)/((n+1)*(n+2)*(n+3)))
        end:
    seq(a(n), n=0..20);  # Alois P. Heinz, Oct 20 2013
  • Mathematica
    Times@@@Partition[CatalanNumber[Range[0,20]],3,1]/2 (* Harvey P. Dale, Apr 10 2013 *)

Formula

a(n) = A014228(n)/2.