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.

A268220 a(n) = (n!/5!)*Sum(1/k!,k=1..n-5).

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 6, 63, 560, 5166, 51912, 571494, 6858720, 89164647, 1248307060, 18724608903, 299593746816, 5093093702060, 91675686645648, 1741838046278940, 34836760925594304, 731571979437500733, 16094583547625042460, 370175421595376010229, 8884210118289024288000
Offset: 0

Views

Author

N. J. A. Sloane, Jan 30 2016

Keywords

Crossrefs

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

Programs

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