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.

A082168 a(n) = A006690(n)/n^3.

Original entry on oeis.org

1, 7, 295, 33251, 7319436, 2669857476, 1459913038884, 1118904543734724, 1145415466062268695, 1510492370204314777345, 2494718462461802382223714
Offset: 1

Views

Author

Valery A. Liskovets, Apr 09 2003

Keywords

References

  • Valery A. Liskovets, The number of initially connected automata, Kibernetika, (Kiev), No3 (1969), 16-19; Engl. transl.: Cybernetics, v.4 (1969), 259-262.

Crossrefs

Cf. A006690.

Programs

  • Mathematica
    b[1] = 1; b[n_] := b[n] = n^(3n)/(n-1)! - Sum[n^(3(n-i)) b[i]/(n-i)!, {i, 1, n-1}];
    a[n_] := b[n]/n^3;
    Array[a, 11] (* Jean-François Alcover, Aug 28 2019 *)

Formula

a(n) := A006690(n)/n^3