A237623 Two-Special Pairs in a Free Group.
0, 0, 0, 0, 0, 1, 2, 6, 14, 30, 62, 129, 252, 499, 984, 1884, 3624, 7025, 13358, 25694, 49316
Offset: 1
Crossrefs
Cf. A059076.
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.
Sean D Lawton has authored 2 sequences.
Draw a square n X n array of squares (one face of an n X n X n Rubik's cube). Starting with 1, number the n^2 squares of the array from left to right and from top to bottom. One is allowed to permute this labeling by a finite succession of 180-degree rotations of rows or columns. To compute the terms of the sequence, compute the order of the group of allowed positions. The 1 X 1 case corresponds to the trivial group and so its order is 1: the first term. Here are computations for the next three terms of this sequence using the computer program GAP: gap> G2:=Group((1,2),(3,4),(1,3),(2,4)); gap> Order(G2); 24 gap> G3:=Group((1,3),(4,6),(7,9),(1,7),(2,8),(3,9)); gap> Order(G3); 96 gap> G4:=Group((1,4)(2,3), (5,8)(6,7), (9,12)(10,11), (13,16)(14,15), (1,13)(5,9), (2,14)(6,10), (3,15)(7,11), (4,16)(8,12)); gap> Order(G4); 165888
A225790 := n -> Size(grp(n)); grp := n -> Group(Concatenation(List([1,n+1..n^2-n+1], s->flip(s, n, 1)), List([1..n], s->flip(s, n, n)))); flip := function(start, nterms, skip) return Product([1..Int(nterms/2)], m->(start + skip*(m - 1), start + skip*(nterms - m)), ()); end; # Eric M. Schmidt, Nov 05 2013
a225790 1 = 1 a225790 n = 12 ^ (n1 * n1) * 2 ^ (2 * n1 - 1) * k where n1 = div n 2 k = if odd n then 4 else 1 -- Qingyu Ren, Aug 12 2019
a1,n = 1,1 print(n,a1) while n < 12: n = n+1 if n%2 == 0: nn = n//2 a = 2**(2*nn*nn+2*nn-1)*3**(nn*nn) a1 = a else: a = 4*a1 print(n,a) # A.H.M. Smeets, Aug 15 2019
Comments