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.

A346324 Number of permutations of [n] having nine cycles of the form (c1, c2, ..., c_m) where c1 = min_{i>=1} c_i and c_j = min_{i>=j} c_i or c_j = max_{i>=j} c_i.

Original entry on oeis.org

1, 45, 1320, 31680, 677391, 13462449, 254795255, 4662766680, 83340628657, 1465044247953, 25454998074402, 438717429420660, 7520382153446728, 128469777544339440, 2190375675509324512, 37315178727984493248, 635733806304497380480, 10838531804748912309760
Offset: 9

Views

Author

Alois P. Heinz, Jul 13 2021

Keywords

Crossrefs

Column k=9 of A344855.

Programs

  • Maple
    b:= proc(n) option remember; series(`if`(n=0, 1, add(b(n-j)
          *binomial(n-1, j-1)*x*ceil(2^(j-2)), j=1..n)), x, 10)
        end:
    a:= n-> coeff(b(n), x, 9):
    seq(a(n), n=9..29);