A383472 a(n) = round(Product_{k=1..n} 1 + 2^2^(-k)).
1, 2, 5, 11, 23, 46, 92, 184, 369, 738, 1477, 2954, 5909, 11818, 23637, 47274, 94548, 189096, 378193, 756387, 1512775, 3025550, 6051101, 12102203, 24204406, 48408812, 96817625, 193635250, 387270501, 774541002, 1549082004, 3098164009, 6196328018, 12392656037
Offset: 0
Keywords
Programs
-
Mathematica
Floor[Product[(1+2^(2^(-k))),{k,1,n}]+1/2]
-
PARI
a(n) = round(prod(k=1, n, 1 + 2^2^(-k))); \\ Michel Marcus, Apr 28 2025
Comments