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!)
A185333 Number of binary necklaces of n beads for which a cut exists producing a palindrome. 3
2, 2, 4, 3, 8, 6, 16, 9, 32, 20, 64, 34, 128, 72, 256, 129, 512, 272, 1024, 516, 2048, 1056, 4096, 2050, 8192, 4160, 16384, 8200, 32768, 16512, 65536, 32769, 131072, 65792, 262144, 131088, 524288, 262656, 1048576, 524292, 2097152 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
For odd n, this corresponds to A029744, necklaces of n beads that are the same when turned over. For even n, consider the necklace "01", which satisfies A029744 but cannot be cut to produce a palindrome.
LINKS
Hugo Pfoertner and Robert G. Wilson v, Table of n, a(n) for n = 1..1000
MATHEMATICA
f[n_] := If[OddQ@ n, 2^(n/2 + 1/2), Block[{k = IntegerExponent[n, 2] - 1}, 2^(n/2 - 1) + 2^((n/2 - 2^k)/(2^(k + 1)))]]; Array[f, 41] (* Robert G. Wilson v, Aug 08 2011 *)
PROG
(Python)
def a(n):
if n%2: return 2**((n + 1)//2)
k=bin(n - 1)[2:].count('1') - bin(n)[2:].count('1')
return 2**(n//2 - 1) + 2**((n//2 - 2**k)//(2**(k + 1)))
print([a(n) for n in range(1, 101)]) # Indranil Ghosh, Jun 29 2017
CROSSREFS
Cf. A185376, A025480. - Hugo Pfoertner, Jul 30 2011
Sequence in context: A133806 A360241 A283717 * A005176 A050335 A360686
KEYWORD
nonn
AUTHOR
Tony Bartoletti, Feb 20 2011
STATUS
approved

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 April 20 00:03 EDT 2024. Contains 371798 sequences. (Running on oeis4.)