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!)
A370458 Partial products of A051179. 2
1, 3, 45, 11475, 752014125, 3229876072253041875, 59580697294650083747194059426068878125, 20274260698223485458204828871028994444941136941453077244297515184669623921875 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Donald Knuth, Problem 11685, The American Mathematical Monthly, Vol. 120, No. 1 (2013), p. 76; The Reciprocal of the Thue-Morse Constant, Solution to Problem 11685 by Traian Viteam, ibid., Vol. 122, No. 1 (2015), pp. 81-82.
Roberto Tauras, Problem 11685.
FORMULA
a(n) = Product_{k=0..n} A051179(k).
Sum_{n>=0} 1/a(n) = A258714 = 1/A215016 - 3/2 = 1.355642702854... (Knuth, 2013).
MATHEMATICA
FoldList[Times, Table[2^(2^n) - 1, {n, 0, 7}]]
PROG
(PARI) lista(nmax) = {my(v = 1); for(i = 0, nmax, v *= (2^(2^i) - 1); print1(v, ", ")); }
(Python)
from math import prod
def A370458(n): return prod((1<<(1<<i))-1 for i in range(n+1)) # Chai Wah Wu, Feb 19 2024
CROSSREFS
Sequence in context: A086683 A155203 A183131 * A037105 A196137 A261837
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Feb 19 2024
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 June 30 10:10 EDT 2024. Contains 373866 sequences. (Running on oeis4.)