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.

A098692 Main diagonal of array in A098691.

Original entry on oeis.org

1, 2, 10, 78, 777, 9800, 149796, 2690420, 55555500, 1296871224, 33773107758, 970753545580, 30527491279005, 1042604500906800, 38430716820193144, 1520662246114589640, 64291516462902839175, 2892426397164199846860, 137970526315789473684210, 6955460736173788715925048, 369510689788116404049535299
Offset: 1

Views

Author

Ralf Stephan, Sep 21 2004

Keywords

Comments

a(n) is the number of self-complementary n-bead primitive necklaces of n+1 colors (see Miller (1978)). - Petros Hadjicostas, Aug 21 2019

Crossrefs

Cf. A098691.

Programs

  • Maple
    with(numtheory):
    a:= n-> `if`(n=2^ilog2(n) and n>1, (n+1)^n-1, add(mobius(d)*
           (n+1)^(n/d), d=select(x-> x::odd, divisors(n))))/(2*n):
    seq(a(n), n=1..20);  # Alois P. Heinz, Aug 21 2019

Formula

a(n) = ((n + 1)^n - 1)/(2*n) if n = 2^s (for s >= 1), and (1/(2*n)) * Sum_{d|n, d odd} mu(d) * (n + 1)^(n/d) otherwise. - Petros Hadjicostas, Aug 21 2019

Extensions

More terms by Petros Hadjicostas, Aug 21 2019