A076628 a(n) = 2^(2^(n-1))*b(n) where b(1) = 1/2 and b(n+1) = b(n) - b(n)^2.
1, 1, 3, 39, 8463, 483008799, 1841209495473815103, 30574267942866411492610617989187955839, 9469098402231365955845075782127013884605836706970528486326625808482327697663
Offset: 1
Links
- Michael Somos, A Somos-Rusin recursion
Programs
-
Magma
[1] cat [n eq 1 select 1 else Self(n-1)*2^(2^(n-1))-Self(n-1)^2: n in [1..8]]; // Vincenzo Librandi, Jun 17 2015
-
Mathematica
a[ n_] := If[ n < 2, Boole[n == 1], a[n - 1] (2^(2^(n - 2)) - a[n - 1])]; (* Michael Somos, Jul 24 2018 *)
-
PARI
b(n)=if(n<2,1/2,b(n-1)-b(n-1)^2); a(n)=numerator(b(n))
Formula
a(n) = 2^(2^(n-1))*[1/(n + log(n) + (1-e(oo)) + (log(n)/n)*(1+o(1)))], where 1 - e(oo) is a constant equal to about 1 - 0.232006 = 0.767994. The expression in the square brackets is Dave Rusin's "best estimate" for b(n), taken from the link "Michael Somos, A Somos-Rusin recursion" (where b(n) is denoted a(n)). - Shai Covo (green355(AT)netvision.net.il), Mar 15 2010
a(n+1) = a(n) * 2^(2^(n-1)) - a(n)^2 starting from a(1) = 1, also a(n) = sqrt(A187131(n-1)) - Henry Bottomley, Mar 05 2011
It appears that a(n) = Product_{k = 1..n} A100441(k). - Peter Bala, Feb 11 2015
Extensions
Typo in definition corrected by Shai Covo (green355(AT)netvision.net.il), Mar 14 2010
Comments