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.

A244171 Number of compositions of n in which the minimal multiplicity of parts equals 8.

Original entry on oeis.org

1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 12871, 24310, 68068, 75582, 169728, 203490, 395352, 490314, 874312, 1105885, 1809523, 2319967, 3553845, 4495635, 6706767, 8379039, 12014983, 15065623, 20868122, 25855787, 35250728, 43103655, 57415602, 70106277
Offset: 8

Views

Author

Alois P. Heinz, Jun 21 2014

Keywords

Crossrefs

Column k=8 of A242451.

Programs

  • Maple
    b:= proc(n, i, p, k) option remember; `if`(n=0, p!, `if`(i<1, 0,
          add(b(n-i*j, i-1, p+j, k)/j!, j=[0, $max(1, k)..n/i])))
        end:
    a:= n-> b(n$2, 0, 8) -b(n$2, 0, 9):
    seq(a(n), n=8..55);