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!)
A076949 Decimal expansion of c, the constant such that lim n -> infinity A003095(n)/c^(2^n) = 1. 9

%I #23 Nov 30 2022 08:26:12

%S 1,2,2,5,9,0,2,4,4,3,5,2,8,7,4,8,5,3,8,6,2,7,9,4,7,4,9,5,9,1,3,0,0,8,

%T 5,2,1,3,2,1,2,2,9,3,2,0,9,6,9,6,6,1,2,8,2,3,1,7,7,0,0,9,0,7,2,5,5,2,

%U 3,3,9,9,7,5,2,6,5,7,3,8,0,2,1,6,7,9,1,5,4,5,2,0,4,9,9,2,8,4,2,9

%N Decimal expansion of c, the constant such that lim n -> infinity A003095(n)/c^(2^n) = 1.

%H G. C. Greubel, <a href="/A076949/b076949.txt">Table of n, a(n) for n = 1..10000</a>

%H Stephan Wagner, Volker Ziegler, <a href="https://arxiv.org/abs/2004.09353">Irrationality of growth constants associated with polynomial recursions</a>, arXiv:2004.09353 [math.NT], 2020.

%F Equals sqrt(A077496). - _Vaclav Kotesovec_, Dec 17 2014

%e 1.2259024435287485386279474959130085213212293209696612823177009072552339975...

%t A003095[n_]:= A003095[n]= If[n==0, 0, 1 + A003095[n-1]^2];

%t S[n_]:= S[n]= If[n==1, Log[2]/2, S[n-1] + Log[1 + 1/A003095[n]^2]/2^n];

%t RealDigits[Exp[S[13]/2], 10, 120][[1]] (* _G. C. Greubel_, Nov 29 2022 *)

%o (Magma)

%o function A003095(n)

%o if n eq 0 then return 0;

%o else return 1 + A003095(n-1)^2;

%o end if; return A003095;

%o end function;

%o function S(n)

%o if n eq 1 then return Log(2)/2;

%o else return S(n-1) + Log(1 + 1/A003095(n)^2)/2^n;

%o end if; return S;

%o end function;

%o SetDefaultRealField(RealField(120)); Exp(S(12)/2); // _G. C. Greubel_, Nov 29 2022

%o (SageMath)

%o @CachedFunction

%o def A003095(n): return 0 if (n==0) else 1 + A003095(n-1)^2

%o @CachedFunction

%o def S(n): return log(2)/2 if (n==1) else S(n-1) + log(1 + 1/(A003095(n))^2)/2^n

%o numerical_approx( exp(S(12)/2), digits=120) # _G. C. Greubel_, Nov 29 2022

%Y Cf. A003095, A077496, A213437, A258112, A258113.

%K cons,nonn

%O 1,2

%A _Benoit Cloitre_, Nov 27 2002

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 April 19 02:12 EDT 2024. Contains 371782 sequences. (Running on oeis4.)