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!)
A094542 Denominator of Product_{k=0..n} ((2*k+1)/(2*k+2))^((-1)^t(k)) where t(k)=A010060(k) (Thue-Morse sequence). 6
2, 3, 5, 10, 9, 108, 216, 405, 765, 3825, 2550, 9775, 391, 10557, 102051, 204102, 198099, 7131564, 14263128, 69532749, 417196494, 815429511, 319081113, 3828973356, 7657946712, 7510678506, 7371591867, 58972734936, 57955963644 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
REFERENCES
J.-P. Allouche and J. Shallit, Automatic sequences, Cambridge, pp. 153, 207
LINKS
FORMULA
Product_{k>=0} ((2*k+1)/(2*k+2))^((-1)^t(k)) = 1/sqrt(2).
MATHEMATICA
t[0] = 0; t[1] = 1; t[n_?EvenQ] := t[n] = t[n/2]; t[n_?OddQ] := t[n] = 1 - t[(n-1)/2]; a[n_] = Product[((2k + 1)/(2k + 2))^((-1)^t[k]), {k, 0, n}]; a /@ Range[0, 28] // Denominator (* Jean-François Alcover, Jul 05 2011 *)
PROG
(PARI) a(n)=denominator(prod(k=0, n, ((2*k+1)/(2*k+2))^((-1)^(subst(Pol(binary(k)), x, 1)%2))))
CROSSREFS
Cf. A010060, A094541 (numerator), A261505, A261559.
Sequence in context: A367297 A286144 A038807 * A175481 A288244 A246392
KEYWORD
frac,nonn
AUTHOR
Benoit Cloitre, May 08 2004
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 August 11 02:58 EDT 2024. Contains 375059 sequences. (Running on oeis4.)