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!)
A056503 Number of periodic palindromic structures of length n using a maximum of two different symbols. 10

%I #28 Sep 20 2018 03:26:40

%S 1,2,2,4,4,7,8,14,16,26,32,51,64,100,128,198,256,392,512,778,1024,

%T 1552,2048,3091,4096,6176,8192,12324,16384,24640,32768,49222,65536,

%U 98432,131072,196744,262144,393472,524288,786698,1048576,1573376,2097152,3146256,4194304

%N Number of periodic palindromic structures of length n using a maximum of two different symbols.

%C For example, aaabbb is not a (finite) palindrome but it is a periodic palindrome. Permuting the symbols will not change the structure.

%C A periodic palindrome is just a necklace that is equivalent to its reverse. The number of binary periodic palindromes of length n is given by A164090(n). A binary periodic palindrome can only be equivalent to its complement when there are an equal number of 0's and 1's. - _Andrew Howroyd_, Sep 29 2017

%C Number of cyclic compositions (necklaces of positive integers) summing to n that can be rotated to form a palindrome. - _Gus Wiseman_, Sep 16 2018

%D M. R. Nester (1999). Mathematical investigations of some plant interaction designs. PhD Thesis. University of Queensland, Brisbane, Australia. [See A056391 for pdf file of Chap. 2]

%H Andrew Howroyd, <a href="/A056503/b056503.txt">Table of n, a(n) for n = 1..200</a>

%F a(2n+1) = A164090(2n+1)/2 = 2^n, a(2n) = (A164090(2n) + A045674(n))/2. - _Andrew Howroyd_, Sep 29 2017

%e From _Gus Wiseman_, Sep 16 2018: (Start)

%e The sequence of palindromic cyclic compositions begins:

%e (1) (2) (3) (4) (5) (6) (7)

%e (11) (111) (22) (113) (33) (115)

%e (112) (122) (114) (133)

%e (1111) (11111) (222) (223)

%e (1122) (11113)

%e (11112) (11212)

%e (111111) (11122)

%e (1111111)

%e (End)

%t (* b = A164090, c = A045674 *)

%t b[n_] := (1/4)*(7 - (-1)^n)*2^((1/4)*(2*n + (-1)^n - 1));

%t c[0] = 1; c[n_] := c[n] = If[EvenQ[n], 2^(n/2-1) + c[n/2], 2^((n-1)/2)];

%t a[n_?OddQ] := b[n]/2; a[n_?EvenQ] := (1/2)*(b[n] + c[n/2]);

%t Array[a, 45] (* _Jean-François Alcover_, Oct 08 2017, after _Andrew Howroyd_ *)

%t Table[Length[Select[Join@@Permutations/@IntegerPartitions[n],Function[q,And[Array[OrderedQ[{q,RotateRight[q,#]}]&,Length[q]-1,1,And],Array[SameQ[RotateRight[q,#],Reverse[RotateRight[q,#]]]&,Length[q],1,Or]]]]],{n,15}] (* _Gus Wiseman_, Sep 16 2018 *)

%Y Row sums of A179181.

%Y Cf. A016116, A045674, A056508, A164090, A285012.

%Y Cf. A000740, A000837, A008965, A025065, A059966, A242414, A296302, A317085, A317086, A317087, A318731.

%K nonn

%O 1,2

%A _Marks R. Nester_

%E a(17)-a(45) from _Andrew Howroyd_, Apr 07 2017

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 March 19 04:58 EDT 2024. Contains 370952 sequences. (Running on oeis4.)