login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A000824
Number of switching networks (see Harrison reference for precise definition).
(Formerly M4917 N2110)
0
13, 237, 356026, 2932175712336, 412646680050205587085305856, 16346619102569481158480824333166611354489546429742186496
OFFSET
1,1
COMMENTS
Number of equivalence classes with complementation of n variables on the domain and symmetric group of 3 variables operating on the range. - Sean A. Irvine, Jul 11 2011
REFERENCES
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
FORMULA
Let b_n(r,s) = (2^(r*2^n) + (2^n-1)*2^(s*2^(n-1)))/2^n. Then, a(n) = (b_n(3,3) + 3*b(2,3) + 2*b(1,1))/6. - Sean A. Irvine, Jul 11 2011
MATHEMATICA
b[n_, r_, s_] := (2^(r*2^n) + (2^n - 1)*2^(s*2^(n - 1)))/2^n; a[n_] := (b[n, 3, 3] + 3*b[n, 2, 3] + 2*b[n, 1, 1])/6; Table[a[n], {n, 6}] (* James C. McMahon, Dec 07 2023 *)
CROSSREFS
Sequence in context: A218202 A134493 A051689 * A229384 A181035 A228795
KEYWORD
nonn
EXTENSIONS
More terms from Sean A. Irvine, Jul 10 2011
STATUS
approved