login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A121352 Number of different, not necessarily connected, unlabeled trivalent diagrams of size n. 8
1, 1, 2, 4, 7, 10, 24, 37, 63, 112, 200, 318, 607, 1058, 1814, 3247, 6004, 10316, 19048, 35478, 63496, 117023, 223822, 408121, 766661, 1484363, 2775201, 5270079, 10357605, 19714259, 37970066, 75439670, 146103241, 284719527, 571706625 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Equivalently, the number of isomorphism class of PSL_2(ZZ) actions on finite sets of size n.
Also the number of (r,s) pair of permutations up to simultaneous conjugation, in S_n for which r is involutive i.e. r^2 = id and s is of weak order three i.e. s^3 = id.
LINKS
MAPLE
mu := k -> `if`( k mod 2 = 0, 2/k, 1/k ) : nu := k -> `if`( k mod 3 = 0, 3/k, 1/k ) : u := (k, n) -> add(mu(k)^(n-2*k2)/(n-2*k2)!/k2!/(2*k)^k2, k2=0..floor(n/ 2)) : v := (k, n) -> add(nu(k)^(n-3*k3)/(n-3*k3)!/k3!/(3*k)^k3, k3=0..floor(n/ 3)) : N := 100 : ZF := 1 : for k from N to 1 by -1 do ZF := rem(ZF * add(n!*k^n*u(k, n)*v(k, n)*t^(k*n), n = 0..floor(N/ k)), t^(N+1), t) ; end do : sort(ZF, t, ascending);
MATHEMATICA
max = 34; mu[k_] := If[Mod[k, 2] == 0, 2/k, 1/k]; nu[k_] := If[Mod[k, 3] == 0, 3/k, 1/k]; u[k_, n_] := Sum[ mu[k]^(n - 2*k2) / (((n - 2*k2)!*k2!)*(2*k)^k2), {k2, 0, Floor[n/2]}]; v[k_, n_] := Sum[ nu[k]^(n - 3*k3) / (((n - 3*k3)!*k3!)*(3*k)^k3), {k3, 0, Floor[n/3]}]; ZF = 1; For[k = max, k >= 1, k--, ZF = PolynomialMod[ ZF*Sum[ n!*k^n*u[k, n]*v[k, n]*t^(k*n), {n, 0, Floor[max/k]}], t^(max + 1)]]; CoefficientList[ZF, t](* Jean-François Alcover, Dec 05 2012, translated from Samuel Vidal's Maple program *)
CROSSREFS
Unconnected version of A121350.
Unlabeled version of A121357.
Cf. also A005133, A121355, A121356.
Sequence in context: A036685 A034744 A219748 * A134126 A277340 A337490
KEYWORD
nonn
AUTHOR
Samuel A. Vidal, Jul 23 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 21 21:42 EDT 2024. Contains 375353 sequences. (Running on oeis4.)