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!)
A280711 A pseudorandom binary sequence with minimum cyclic autocorrelation of all of its partial subsequences. 3
1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
After the first term a(1) = 1, each subsequent term is chosen so as to minimize the cyclic autocorrelations of the partial sequence. If the autocorrelation doesn't change with different choices for the next term, then the complement of the previous term is used. If this sequence were to repeat the last term instead of using its complement, a similar result would be obtained, that is, a sequence with a nearly flat average Fourier spectrum, but with half the average power spectrum.
LINKS
FORMULA
With F(a(n)) = Sum_{i=1..n} Sum_{j=0..n-1} (2*a(i)-1)*(2*a((i+j) mod n)-1)
If argmin(F(a(n))) < argmax(F(a(n))) then
a(n) = argmin(F(a(n)))
else
a(n) = (a(n-1) + 1) mod 2
MATHEMATICA
(* This function is the sum of all possible cyclic autocorrelations of a list x *)
AutoCorrelation[x_] :=
Sum[Abs[x.RotateRight[x, j]], {j, 0, Length[x] - 1}];
a = {1}; (* First element *)
nmax = 120; (*number of appended elements*)
Do[If[AutoCorrelation[Append[a, 1]] < AutoCorrelation[Append[a, -1]],
AppendTo[a, 1],
If[AutoCorrelation[Append[a, 1]] > AutoCorrelation[Append[a, -1]],
AppendTo[a, -1], AppendTo[a, -a[[-1]]]]], {j, nmax}];
a /. {-1 -> 0}
CROSSREFS
Sequence in context: A267034 A167364 A365992 * A293164 A230298 A000480
KEYWORD
nonn,base
AUTHOR
Andres Cicuttin, Jan 07 2017
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 19 17:39 EDT 2024. Contains 371797 sequences. (Running on oeis4.)