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.

A046673 a(n) = (2n)!*Sum_{i=1..n} 1/i.

Original entry on oeis.org

2, 36, 1320, 84000, 8285760, 1173553920, 226040855040, 56865153945600, 18112111963545600, 7125892746964992000, 3394344333441245184000, 1925382105537337294848000, 1282520788685931213619200000, 991363455147400701817651200000, 880169729965718014490443776000000
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Table[(2n)!HarmonicNumber[n],{n,20}] (* Harvey P. Dale, Sep 27 2013 *)
  • PARI
    a(n) = (2*n)!*sum(k=1, n, 1/k); \\ Michel Marcus, Jul 11 2018