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.

A245506 Number of endofunctions f on [n] such that f^10(i) = f(i) for all i in [n].

Original entry on oeis.org

1, 1, 3, 12, 73, 556, 4737, 44122, 453441, 5226984, 69703201, 1132247854, 22865062497, 541274154604, 13810143608913, 361165919643666, 9534875308290433, 254667431232941008, 6928956222876625473, 193066959857334885334, 5521621116955849623201
Offset: 0

Views

Author

Alois P. Heinz, Jul 24 2014

Keywords

Crossrefs

Column k=10 of A245501.

Programs

  • Maple
    egf:= exp(add((x*exp(x))^(3^j)/(3^j), j=0..2)):
    a:= n-> n!*coeff(series(egf, x, n+1), x, n):
    seq(a(n), n=0..25);

Formula

E.g.f: exp(Sum_{j=0..2} (x*exp(x))^(3^j)/(3^j)).