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.

A054051 Number of nonisomorphic connected binary n-state automata.

Original entry on oeis.org

1, 9, 119, 2662, 79154, 2962062, 132536919, 6904606698, 410379198542, 27406396140548, 2031843175944876, 165592123280454675, 14715292998356150461, 1416127682894394114138, 146723247630856311651736, 16284075762705841850155071, 1927434528878738556115924081, 242361176791511465207020367116
Offset: 1

Views

Author

Vladeta Jovovic, Apr 29 2000

Keywords

Comments

Inverse Euler transform of A054050.

References

  • F. Harary and E. Palmer, Graphical Enumeration, 1973. [See Section 6.5, pp. 146-150.]

Crossrefs

Programs

  • PARI
    /* This program is a modification of Christian G. Bower's PARI program for the inverse Euler transform from the link above. */
    lista(nn) = {local(A=vector(nn+1)); for(n=1, nn+1, A[n]=if(n==1, 1, A054050(n-1))); local(B=vector(#A-1, n, 1/n), C); A[1] = 1; C = log(Ser(A)); A=vecextract(A, "2.."); for(i=1, #A, A[i] = polcoeff(C, i)); A = dirdiv(A, B); } \\ Petros Hadjicostas, Mar 08 2021

Extensions

Terms a(16)-a(18) from Petros Hadjicostas, Mar 08 2021