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.

A024420 a(n) = n! * Sum_{j=0..floor(n/2)} (-1)^j/binomial(n,j).

Original entry on oeis.org

1, 1, 1, 4, 22, 108, 612, 4416, 36576, 331200, 3319200, 36806400, 445046400, 5813579520, 81716947200, 1230656716800, 19761225523200, 336973967769600, 6082189179494400, 115851849523200000, 2322322137354240000, 48869666136023040000
Offset: 0

Views

Author

Keywords

Programs

  • Maple
    a:= n-> n!*add((-1)^j/binomial(n, j), j=0..iquo(n, 2)):
    seq(a(n), n=0..23);  # Alois P. Heinz, Jul 10 2019
  • Mathematica
    Table[n!*Sum[(-1)^k/Binomial[n, k], {k, 0, Floor[n/2]}], {n, 0, 20}] (* Vaclav Kotesovec, Jul 10 2019 *)

Extensions

More terms from Sean A. Irvine, Jul 10 2019