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!)
A239225 Denominator of 2n/v(n)^2, where v(1) = 0, v(2) = 1, and v(n) = v(n-1)/(n-2) + v(n-2) for n >= 3. (Limit of 2n/v(n)^2 is Pi.) 2
1, 1, 1, 9, 9, 75, 225, 1225, 1225, 19845, 99225, 160083, 480249, 1288287, 3006003, 41409225, 41409225, 1329696225, 11967266025, 10667118605, 53335593025, 85530896451, 940839860961, 1371086188563, 4113258565689, 21972535073125, 285642955950625, 176021737014375 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Pi = limit of A239224(n)/A239225(n), attributed to B. Cloitre in Finch.
REFERENCES
Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, page 19.
LINKS
EXAMPLE
Let w(n) = 2n/v(n)^2. The first 7 values of w are 4, 6, 32/9, 40/9, 256/75, 896/225, 4096/1225, with approximations 4., 6., 3.55556, 4.44444, 3.41333, 3.98222, 3.34367; w(1000) = 3.14316..., w(10000) = 3.14175..., w(20000) = 3.14167... .
MAPLE
v:= proc(n) v(n):= `if`(n<3, n-1, v(n-1)/(n-2)+v(n-2)) end:
a:= n-> denom(2*n/v(n)^2):
seq(a(n), n=2..30); # Alois P. Heinz, Mar 12 2014
MATHEMATICA
z = 40; v[1] = 0; v[2] = 1; v[n_] := v[n] = v[n - 1]/(n - 2) + v[n - 2]
u = Join[{1}, Table[2 n/v[n]^2, {n, 2, z}]];
t1 = Numerator[u] (* A239224 *)
t2 = Denominator[u] (* A239225 *)
CROSSREFS
Sequence in context: A255743 A183893 A210052 * A165830 A152018 A223744
KEYWORD
nonn,frac,easy
AUTHOR
Clark Kimberling, Mar 12 2014
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 25 13:44 EDT 2024. Contains 371975 sequences. (Running on oeis4.)