New Reply

I'm curious about a number series...

 
Share Thread Thread Tools
Nov5-09, 09:40 PM   #1
 

I'm curious about a number series...


This is an interesting type of number series I found. I have no idea if it's good for anything, but somehow it's captured my interest.

the first example, the simplest is 0,1,1,0

the rules of operation are that you start at each position and take a pair of numbers. At the end, you wrap to get the last member of the last pair.

In the simple series, you get 01,11,10,00. This is every possible pair of numbers.
They are 'compressed' in a series that only requires n elements but produces all n possible pairs.


The next exampe is 0,0,0,1,1,1,0,1

When taken in triplets, you get 000,001,011,111,110,101,010,100 (wrapping as needed)
This is every possible triple of numbers. They are represented by a string of only 8 numbers. So the 'compressed' string of n numbers yields all n * 3 triples.

There should be a string, then, which is 256 characters long which produces all 256 8 character words, I think.

It's not quite a gray code, because 2 bits can change at each step, but I haven't figured out a formula to generate these strings.

There is something interesting about exponents becoming geometric that fascinates me and I wondered does anybody know anything about this or have thoughts on it?
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Bird's playlist could signal mental strengths and weaknesses
>> Minus environment, patterns still emerge: Computational study tracks E. coli cells' regulatory mechanisms
>> Bacterium uses natural 'thermometer' to trigger diarrheal disease, scientists find
Dec18-10, 11:39 AM   #2
 
--arranging 2^n bits in circle so all 2^n consecutive strings of length n are distinct.
Those are called De Bruijn's sequence. (also Ouroboros Snake, Ouroborean ring)

How many De Bruijn's sequence for n-strings of 0-1?
This is sequence A016031 in OEIS http://oeis.org/A016031
De Bruijn's sequence: 2^(2^(n-1) - n): ways of arranging 2^n bits in circle so all 2^n consecutive strings of length n are distinct.
(n=1..9): 1, 1, 2, 16, 2048, 67108864, 144115188075855872, 1329227995784915872903807060280344576, 22615642429163319418666208009509357002591793880007922663956559376545533 1328

See also: http://en.wikipedia.org/wiki/De_Bruijn_sequence

One possible ouroborean ring for quadruplets is
1111000010100110
There are others.
Ouroborean rings exists for all m-tuples of n digits: for example, in this one
000111222121102202101201002
each triple of the three digits 0, 1, 2 occurs exactly once.
There are also 2D ourotorus.
New Reply
Thread Tools


Similar Threads for: I'm curious about a number series...
Thread Forum Replies
number series an bn Calculus & Beyond Homework 1
Number series General Math 6
how to prove a number series is unbounded Calculus 0
A Geometric Product (a series of exercises for the curious) Calculus 7
number of terms in a series Linear & Abstract Algebra 3