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.

A268219 a(n) = (n!/4!)*Sum(1/k!,k=1..n-4).

Original entry on oeis.org

0, 0, 0, 0, 0, 5, 45, 350, 2870, 25956, 259770, 2857800, 34294095, 445823950, 6241536301, 93623045880, 1497968735900, 25465468512680, 458378433231300, 8709190231398576, 174183804627976365, 3657859897187509650, 80472917738125219615, 1850877107976880060000, 44421050591445121450626
Offset: 0

Views

Author

N. J. A. Sloane, Jan 30 2016

Keywords

Crossrefs

For others in this series, see A038156, A038158, A268218, A268220.

Programs

  • Maple
    g:=(r,n)->(n!/r!)*add(1/k!,k=1..n-r);
    g2:=r->[seq(g(r,n),n=0..30)];
    g2(4);
  • PARI
    a(n) = (n!/4!)*sum(k=1, n-4, 1/k!); \\ Michel Marcus, Jan 30 2016