login
A370458
Partial products of A051179.
2
1, 3, 45, 11475, 752014125, 3229876072253041875, 59580697294650083747194059426068878125, 20274260698223485458204828871028994444941136941453077244297515184669623921875
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
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Feb 19 2024
STATUS
approved