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.

A054742 Finite automata.

Original entry on oeis.org

2, 41, 1952, 172043, 20511924, 3058135804, 545880769246, 113492835877474, 26936031159146324, 7186257876123323136, 2129016419091882758064, 693526953186674417975860, 246375213208005330322801608, 94795009032593187381371471299, 39271207630529921493096501099998, 17428450442901657489782698628853383, 8249301503003544171210026750727519638
Offset: 1

Views

Author

Vladeta Jovovic, Apr 22 2000

Keywords

References

  • F. Harary and E. Palmer, Graphical Enumeration, 1973.

Crossrefs

Inverse Euler transform of A054732.

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, A054732(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(14)-a(17) from Petros Hadjicostas, Mar 08 2021