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.

A110577 {a(1,n)}, where a(m,n) is defined in sequence A110576.

Original entry on oeis.org

1, 2, 4, 11, 40, 172, 820, 4227, 23336, 137282, 857178, 5659496, 39372213, 287657495, 2200586044, 17579891124, 146309132849, 1265828289411, 11362930635404
Offset: 0

Views

Author

Leroy Quet, Jul 28 2005

Keywords

Crossrefs

Programs

  • Mathematica
    a[0, 0] := 1; a[0, 1] := 1; a[0, n_] := a[0, n] = Sum[Binomial[2*n - k - 3, n - 2]*a[0, k], {k, 0, n - 1}]; a[1, 0] := 1; a[1, n_] := a[1, n] = a[1, n - 1] + a[0, n]; Table[a[1, n], {n, 0, 50}] (* G. C. Greubel, Aug 31 2017 *)

Extensions

More terms from Ryan Propper, Sep 25 2005