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!)
A140789 We consider how many ways there are of coloring a square grid, n X n, using just two colors, black & white say. If the resulting grid has TWO lines of symmetry, then the number of different grids is given by this sequence. None of these counted are the images of any of the others under a rotation. If one wishes to count these as different, then each of these numbers can be multiplied by 2. 0

%I #8 Mar 29 2014 03:07:29

%S 0,1,8,32,448,2240,64512,556032,33521664,553615360,68717379584,

%T 2233380896768,562949684985856,36310271727239168,18446744004990074880,

%U 2370406613402957905920,2417851639194073977323520,620178945462269582252179456,1267650600228193372699684241408

%N We consider how many ways there are of coloring a square grid, n X n, using just two colors, black & white say. If the resulting grid has TWO lines of symmetry, then the number of different grids is given by this sequence. None of these counted are the images of any of the others under a rotation. If one wishes to count these as different, then each of these numbers can be multiplied by 2.

%F a(2m) = 2^(m^2 - 1)*(2^m + 1) - 2^(m*(m + 1)/2).

%F a(2m+1)= 2^(m^2 + 2*m + 1) - 2^((m^2 + 3*m + 2)/2).

%o (PARI) s=[0]; for(m=1, 15, s=concat(s, [2^(m^2-1)*(2^m+1)-2^(m*(m+1)/2), 2^(m^2+2*m+1)-2^((m^2+3*m+2)/2)])); s \\ _Colin Barker_, Mar 28 2014

%Y Cf. A140650.

%K nonn

%O 1,3

%A _Anthony C Robin_, Jul 14 2008

%E More terms from _Colin Barker_, Mar 28 2014

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 May 3 06:31 EDT 2024. Contains 372206 sequences. (Running on oeis4.)