A356650 Domination number of the Cartesian product of four n-cycles.
1, 4, 9, 32
Offset: 1
Crossrefs
Cf. A094087.
Formula
a(9*n) = 729*n^4.
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.
Richard Bean has authored 8 sequences.
a(1), a(3), a(5), a(7) are from the group tables for Z_1, Z_3, Z_5 and Z_7 (see sequence A006717); a(4) and a(8) are from Z_2 x Z_2 and the non-cyclic groups of order 8 (see Bedford). a(9) = 2241 from Z_3 x Z_3.
f:=proc(n) option remember; local t; if n <= 1 then 0 elif (n mod 2) = 0 then 3*f(n/2)+(n/2)^2 else t:=(n-1)/2; f(t)+2*f(t+1)+t^2-1; fi; end; [seq(f(n),n=0..100)]; # N. J. A. Sloane, Jul 01 2017
a[0] = a[1] = 0; a[n_] := a[n] = If[EvenQ[n], 3*a[n/2] + n^2/4, 2*a[(n-1)/2 + 1] + a[(n-1)/2] + (1/4)*(n-1)^2 - 1]; Array[a, 60, 0] (* Jean-François Alcover, Dec 09 2017, from Dover's formula *) Table[Length[Select[Tuples[Range[n-1],2],Intersection[Position[Reverse[IntegerDigits[#[[1]],2]],1],Position[Reverse[IntegerDigits[#[[2]],2]],1]]!={}&]],{n,0,20}] (* Gus Wiseman, Mar 30 2019 *)
Comments