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.

A289679 a(n) = Catalan(n-1)*Bell(n).

Original entry on oeis.org

1, 2, 10, 75, 728, 8526, 115764, 1776060, 30240210, 563870450, 11397261720, 247700513242, 5750374629244, 141819106313800, 3698639651089800, 101603353693132215, 2929908721122796680, 88427704298354261610, 2785943404258558905900, 91410200883108291556680, 3117102657076175159955420
Offset: 1

Views

Author

N. J. A. Sloane, Aug 04 2017

Keywords

Crossrefs

Programs

  • Mathematica
    Array[CatalanNumber[# - 1] BellB[#] &, 21] (* Michael De Vlieger, Aug 04 2017 *)
  • Python
    from sympy.functions.combinatorial.numbers import bell, catalan
    def A289679(n): return catalan(n-1)*bell(n) # Chai Wah Wu, Oct 15 2024