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.

A346325 Number of permutations of [n] having ten 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, 55, 1925, 54340, 1352351, 31025995, 673378420, 14053611000, 285145815097, 5667829234067, 110975742044635, 2149132308825320, 41289962312119268, 788820616410896784, 15011983120207453072, 284985824919909766400, 5402570836503080377280, 102360869570893587962880
Offset: 10

Views

Author

Alois P. Heinz, Jul 13 2021

Keywords

Crossrefs

Column k=10 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, 11)
        end:
    a:= n-> coeff(b(n), x, 10):
    seq(a(n), n=10..29);