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.

A245987 Number of pairs of endofunctions f, g on [n] satisfying g^10(f(i)) = f(i) for all i in [n].

Original entry on oeis.org

1, 1, 10, 213, 8056, 540945, 55791936, 7976641981, 1469902760320, 332703236420577, 93998774487116800, 34310097895273565541, 16097501586129903138816, 9217140995822760715385905, 6076268404868213191347785728, 4448129862114255651329796526125
Offset: 0

Views

Author

Alois P. Heinz, Aug 08 2014

Keywords

Crossrefs

Column k=10 of A245980.

Programs

  • Maple
    with(combinat): M:=multinomial:
    b:= proc(n, k) local l, g; l, g:= [1, 2, 5, 10],
          proc(k, m, i, t) option remember; local d, j; d:= l[i];
            `if`(i=1, n^m, add(M(k, k-(d-t)*j, (d-t)$j)/j!*
             (d-1)!^j *M(m, m-t*j, t$j) *g(k-(d-t)*j, m-t*j,
            `if`(d-t=1, [i-1, 0], [i, t+1])[]), j=0..min(k/(d-t),
            `if`(t=0, [][], m/t))))
          end; g(k, n-k, nops(l), 0)
        end:
    a:= n-> add(b(n, j)*stirling2(n, j)*binomial(n, j)*j!, j=0..n):
    seq(a(n), n=0..20);