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.

A261429 Number of permutations p of [3n] without fixed points such that p^9 = Id.

Original entry on oeis.org

1, 2, 40, 42560, 17987200, 8116908800, 43924225945600, 108050180446208000, 215140299047145472000, 2906668948375666073600000, 21059302309493030917734400000, 112131367456110324265700556800000, 2891761281909068919518711775232000000
Offset: 0

Views

Author

Alois P. Heinz, Aug 18 2015

Keywords

Crossrefs

Trisection of column k=9 of A261430.
Cf. A053499.

Programs

  • Maple
    b:= proc(n) option remember; `if`(n<0, 0, `if`(n=0, 1,
           add(mul(n-i, i=1..j-1)*b(n-j), j=[3,9])))
        end:
    a:= n-> b(3*n):
    seq(a(n), n=0..15);

Formula

a(n) = (3n)! * [x^(3n)] exp(x^3/3+x^9/9).