cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A332092 Decimal expansion of Arithmetic-geometric mean AGM(1, 2, 2) defined as limit of the sequence x(n+1) = P(x(n)) with x(0) = (1, 2, 2) and P(a,b,c) = ((a + b + c)/3, sqrt((ab + ac + bc)/3), (abc)^(1/3)).

This page as a plain text file.
%I A332092 #7 Sep 20 2020 01:00:23
%S A332092 1,6,2,8,8,5,8,0,8,8,8,4,4,9,3,8,8,4,0,7,7,6,2,9,0,2,7,7,9,8,8,7,0,8,
%T A332092 0,4,7,6,5,7,6,3,7,5,2,8,3,3,6,2,6,9,0,3,6,4,7,6,0,3,4,7,8,8,3,6,7,3,
%U A332092 5,9,6,6,2,2,2,9,8,9,4,8,9,1,1,9,9,0,8,5,3,5,7,5,0,2,6,0,1,4,3,1,5
%N A332092 Decimal expansion of Arithmetic-geometric mean AGM(1, 2, 2) defined as limit of the sequence x(n+1) = P(x(n)) with x(0) = (1, 2, 2) and P(a,b,c) = ((a + b + c)/3, sqrt((ab + ac + bc)/3), (abc)^(1/3)).
%C A332092 The Arithmetic-geometric mean of two values, AGM(x,y), is the limit of the sequence defined by iterations of (x,y) -> ((x+y)/2, sqrt(xy)). This can be generalized to any number of m variables by taking the vector of the k-th roots of the normalized k-th elementary symmetric polynomials in these variables, i.e., the average of all products of k among these m variables, with k = 1 .. m. After each iteration these m components are in strictly decreasing order unless they are all equal. Once they are in this order, the first one is strictly decreasing, the last one is strictly increasing, therefore they must all have the same limit.
%C A332092 Has this multi-variable AGM already been studied somewhere? Any contributions in that sense are welcome. (Other generalizations have also been proposed, cf. comments on StackExchange.)
%H A332092 User Mathlover, <a href="https://math.stackexchange.com/questions/442062/to-find-the-limit-of-three-terms-mean-iteration/3806368">To find the limit of three terms mean iteration</a>, math.StackExchange.com, Jul 12 2013.
%H A332092 Wikipedia, <a href="https://en.wikipedia.org/wiki/Arithmetic%E2%80%93geometric_mean">Arithmetic-geometric mean</a>, created Jan 2, 2002.
%H A332092 Wikipedia, <a href="https://en.wikipedia.org/wiki/Elementary_symmetric_polynomial">Elementary symmetric polynomial</a>, created Jan 28, 2005.
%e A332092 1.62885808884493884077629027798870804765763752833626903647603...
%o A332092 (PARI) f(k,x,S)={forvec(i=vector(k,i,[1,#x]), S+=vecprod(vecextract(x,i)),2); S/binomial(#x,k)} \\ normalized k-th elementary symmetric polynomial in x
%o A332092 AGM(x)={until(x[1]<=x[#x],x=[sqrtn(f(k,x),k)|k<-[1..#x]]);vecsum(x)/#x}
%o A332092 default(realprecision,100);digits(AGM([1,2,2])\.1^100)
%Y A332092 Cf. other sequences related to the AGM (of two numbers): A061979, A080504, A090852 ff, A127758 ff.
%K A332092 nonn,cons
%O A332092 1,2
%A A332092 _M. F. Hasler_, Sep 18 2020