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.

A296194 Harary index of the n-transposition graph.

Original entry on oeis.org

0, 1, 12, 162, 3010, 81000, 3105396, 162469104, 11117235312, 961808277600, 102496397652000, 13180200302839680, 2011319092988899200, 359224661189539192320, 74214101648670824736000, 17557926151618710547200000, 4715558231100365363023411200
Offset: 1

Views

Author

Eric W. Weisstein, Dec 07 2017

Keywords

Crossrefs

Cf. A292062.

Programs

  • Mathematica
    Table[n! Sum[((-1)^k StirlingS1[n, n - k])/k, {k, n - 1}]/2, {n, 20}]
  • PARI
    a(n)={n!*sum(k=1, n-1, abs(stirling(n, n-k, 1))/k)/2} \\ Andrew Howroyd, Dec 09 2017

Formula

a(n) = (n!/2) * Sum_{k=1..n-1} abs(Stirling1(n, n-k))/k. - Andrew Howroyd, Dec 09 2017

Extensions

Terms a(9) and beyond from Andrew Howroyd, Dec 09 2017