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.

A243127 Number of compositions of n in which the maximal multiplicity of parts equals 10.

Original entry on oeis.org

1, 0, 11, 11, 77, 143, 495, 1133, 3058, 7271, 17777, 41591, 96767, 220473, 496661, 1103619, 2425929, 5276623, 11370986, 24294028, 51316156, 108047687, 225688551, 466237332, 960231624, 1967794950, 3997987950, 8077762209, 16258984885, 32550495175, 64759902032
Offset: 10

Views

Author

Alois P. Heinz, May 29 2014

Keywords

Crossrefs

Column k=10 of A242447.

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..min(n/i, k))))
        end:
    a:= n-> b(n$2, 0, 10) -b(n$2, 0, 9):
    seq(a(n), n=10..50);

Formula

a(n) = A243088(n) - A243087(n) = A243081(n,10) - A243081(n,9).