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.

A101610 n! * Sum[k=1..ceiling(n/2), 1/k].

Original entry on oeis.org

1, 2, 9, 36, 220, 1320, 10500, 84000, 828576, 8285760, 97796160, 1173553920, 16145775360, 226040855040, 3554072121600, 56865153945600, 1006228442419200, 18112111963545600, 356294637348249600
Offset: 1

Views

Author

Ralf Stephan, Dec 10 2004

Keywords

Crossrefs

Programs

  • Mathematica
    Table[n!Sum[1/k,{k,1,Ceiling[n/2]}],{n,20}]  (* Harvey P. Dale, Apr 25 2011 *)