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.

A346323 Number of permutations of [n] having eight 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, 36, 870, 17490, 317031, 5390814, 87942569, 1395590625, 21740278417, 334497665216, 5105159585136, 77525496199008, 1173978347855008, 17756444087253504, 268561449630791680, 4065329910324860672, 61628507048573158144, 936035967482288414720
Offset: 8

Views

Author

Alois P. Heinz, Jul 13 2021

Keywords

Crossrefs

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