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.

A038094 Number of rooted graphs on n labeled nodes where the root has degree 2.

Original entry on oeis.org

6, 96, 1920, 61440, 3440640, 352321536, 67645734912, 24739011624960, 17416264183971840, 23779006032516218880, 63309225660971181146112, 330036748754793764694786048, 3379576307249088150474609131520
Offset: 3

Views

Author

Christian G. Bower, Jan 04 1999

Keywords

Crossrefs

Programs

  • Magma
    [n*Binomial(n-1, 2)*2^Binomial(n-1, 2): n in [3..20]]; // Vincenzo Librandi, Mar 29 2014
    
  • Mathematica
    Table[n*Binomial[n-1, 2]*2^Binomial[n-1, 2], {n, 3, 20}] (* Vaclav Kotesovec, Mar 29 2014 *)
  • PARI
    a(n) = {n * binomial(n-1, 2) * 2^binomial(n-1, 2)} \\ Andrew Howroyd, Nov 23 2020

Formula

a(n) = n * binomial(n-1, 2) * 2^binomial(n-1, 2).
a(n) = n * A103904(n-1) for n >= 3. - Andrew Howroyd, Nov 23 2020