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.

A066319 A labeled structure simultaneously a tree and a cycle.

Original entry on oeis.org

1, 1, 6, 96, 3000, 155520, 12101040, 1321205760, 192849310080, 36288000000000, 8556520581100800, 2471543044256563200, 858447696200353459200, 353034171594345598156800, 169665960401437500000000000
Offset: 1

Views

Author

Christian G. Bower, Dec 13 2001

Keywords

References

  • F. Bergeron, G. Labelle and P. Leroux, Combinatorial Species and Tree-Like Structures, Cambridge, 1998, p. 68 (2.1.37).

Programs

  • Magma
    [n^(n-3)*Factorial(n): n in [1..20]]; // G. C. Greubel, May 29 2019
    
  • Mathematica
    Table[n!*n^(n-3), {n,1,20}] (* G. C. Greubel, May 29 2019 *)
  • PARI
    a(n) = n^(n-2)*(n-1)!; \\ Michel Marcus, May 29 2019
    
  • Sage
    [n^(n-3)*factorial(n) for n in (1..20)] # G. C. Greubel, May 29 2019

Formula

a(n) = n^(n-2)*(n-1)!.

Extensions

Knuth reference from David Callan, Feb 07 2004