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.

A215768 Number of undirected labeled graphs on n nodes with exactly 8 cycle graphs as connected components.

Original entry on oeis.org

1, 36, 750, 12540, 195459, 3057912, 49471708, 835659825, 14779601837, 273850769192, 5313937212402, 107889695430426, 2289283137461287, 50700986253094800, 1170451253565199375, 28127697404018935030, 702741240223958509651, 18230243438652550293450
Offset: 8

Views

Author

Alois P. Heinz, Aug 23 2012

Keywords

Crossrefs

Column k=8 of A215771.

Programs

  • Maple
    T:= proc(n, k) option remember; `if`(k<0 or k>n, 0, `if`(n=0, 1,
          add(binomial(n-1, i)*T(n-1-i, k-1)*ceil(i!/2), i=0..n-k)))
        end:
    a:= n-> T(n, 8):
    seq (a(n), n=8..30);