proposed
approved
proposed
approved
editing
proposed
Starting with the fraction 4/1 as the first term, a(n) is the numerator of the reduced fraction of the n-th term according to the rule: if n is even, multiply the previous term by n/(n+1) ; otherwise multiply the previous term by (n+1)/n.
The fractions having these numerators slowly converge to Pi. The 1000th term at 2000 digits -digit precision yields 3.1400...
approved
editing
proposed
approved
editing
proposed
The fractions forming having these numerators slowly converge to Pi. The 1000th term at 2000 digits precision yields 3.1400...
The first term is 4/1. then Then the 2nd term is 4/1*2/(2 + 1) = 8/3. So 8 is the 2nd entry in the table.
proposed
editing
editing
proposed
G. C. Greubel, <a href="/A113479/b113479.txt">Table of n, a(n) for n = 1..1000</a>
a[1] := 4; a[n_] := a[n] = If[EvenQ[n], n*a[n - 1]/(n + 1), (n + 1)*a[n - 1]/n]; Numerator[Table[a[n], {n, 1, 50}]] (* G. C. Greubel, Mar 12 2017 *)
approved
editing
_Cino Hilliard (hillcino368(AT)gmail.com), _, Jan 09 2006
easy,frac,nonn,new
Cino Hilliard (hillcino368(AT)hotmailgmail.com), Jan 09 2006