[p(p-2)]/[(p-1)2]
0.12345 67891 01112 13141 51617...,is built in such a way. If you haven't yet guessed it, this constant is formed by placing a decimal point in front of the positive integers. The individual decimal digits forming the Champernowne constant are sequence A033307 in the OEIS. Likewise, there's a Champernowne constant in base-2,
0.11011 10010 11101...The Thue-Morse sequence (OEIS A010060) is especially understandable to computer scientists, since it involves the two's complement of numbers. Two ways in which this constant can be defined are as follow:
1) Start with a string that's just the single character 0, and repeatedly apply the replacement rules 0 -> 01 and 1 -> 10 to the characters of the string.Not surprisingly, there's a lot of symmetry in such a number when it's viewed in chunks that are powers of two in length, as shown in the following figure. This figure was generated from a file created by my own program for generating the Thue-Morse sequence. The source code for the program can be found here. Thue-Morse Constant with value
2) Start with a string that's just the single character 0, and repeatedly append the binary complement of the string to itself; that is, repeatedly concatenate copies of the string in which all ones have become zeros, and all zeros have become ones.
0.01101 00110 01011... (base-2)The Thue-Morse sequence might not be mathematically important, but it illustrates how a very simple rule can generate some interesting results. Another example is the logistic map.
0.41245 40336 40107... (base-10)
"...Whereas Pi can be approximated as 3.14, and thus March 14, 2009, is an appropriate day for ''National Pi Day'': Now, therefore, be it Resolved, That the House of Representatives-(1) supports the designation of a ''Pi Day'' and its celebration around the world..."The full text of the resolution (H.Res. 224) can be found here.