|
| |
|
|
A089245
|
|
Integer part of square root of the reciprocal of a number multiplied by 10 to the power of the integer part of the square root of the number.
|
|
0
| |
|
|
10, 7, 5, 50, 44, 40, 37, 35, 333, 316, 301, 288, 277, 267, 258, 2500, 2425, 2357, 2294, 2236, 2182, 2132, 2085, 2041, 20000, 19611, 19245, 18898, 18569, 18257, 17960, 17677, 17407, 17149, 16903, 166666, 164398, 162221, 160128, 158113, 156173
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| The sum of the reciprocals = 0.595091701724608076103001212.. Converges rapidly.
|
|
|
FORMULA
| floor( sqrt(1/x)*10^(floor(sqrt(x))) )
|
|
|
PROG
| (PARI) rootrecip(n) = { sr=0; for(x=1, n, r =sqrt(x); ip=floor(r); fp=r-ip; y=floor((1/r)*10^ip); print1(y", "); sr = sr + 1.0/y; ); print(); print(sr) }
|
|
|
CROSSREFS
| Sequence in context: A038308 A185221 A079166 * A098592 A016731 A068444
Adjacent sequences: A089242 A089243 A089244 * A089246 A089247 A089248
|
|
|
KEYWORD
| easy,nonn
|
|
|
AUTHOR
| Cino Hilliard (hillcino368(AT)gmail.com), Dec 11 2003
|
| |
|
|