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!)
A234362 Floor(AGM(n^2, n^3)), where AGM denotes the arithmetic-geometric mean. 1
0, 1, 5, 16, 35, 65, 106, 161, 231, 318, 425, 551, 700, 872, 1069, 1293, 1545, 1827, 2140, 2486, 2866, 3281, 3734, 4225, 4755, 5327, 5942, 6601, 7306, 8057, 8856, 9706, 10606, 11558, 12565, 13626, 14744, 15919, 17154, 18449, 19805, 21225, 22709, 24259, 25876, 27561 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
PROG
(Python)
import math
for n in range(67):
x = n*n
y = x*n
a = (x+y)*0.5
g = math.sqrt(x*y)
while abs(a-g)>0.00000000001:
x = a
y = g
a = (x+y)*0.5
g = math.sqrt(x*y)
print str(int(a))+', ',
CROSSREFS
Sequence in context: A098404 A190970 A077415 * A363613 A363605 A108966
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, Dec 24 2013
STATUS
approved

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 18 04:22 EDT 2024. Contains 371767 sequences. (Running on oeis4.)