login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A113479 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. 0
4, 8, 32, 128, 256, 512, 4096, 32768, 65536, 131072, 524288, 2097152, 4194304, 8388608, 134217728, 2147483648, 4294967296, 8589934592, 34359738368, 137438953472, 274877906944, 549755813888, 4398046511104, 35184372088832 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

COMMENTS

The fractions forming these numerators slowly converge to Pi. The 1000th term at 2000 digits precision yields 3.1400...

REFERENCES

John Derbshire, Prime Obsession, 2004, Joseph Henry Press, p. 16.

EXAMPLE

The first term is 4/1. then the 2nd term is 4/1*2/(2+1) = 8/3. So 8 is the 2nd entry in the table.

PROG

(PARI) g(n) = { a=4; b=1; print1(4", "); for(x=2, n, if(x%2==0, a=a*x; b=b*(x+1), a=a*(x+1); b=b*x); print1(numerator(a/b)", ") ) }

CROSSREFS

Sequence in context: A149094 A086344 A068205 * A103970 A034785 A075398

Adjacent sequences:  A113476 A113477 A113478 * A113480 A113481 A113482

KEYWORD

easy,frac,nonn

AUTHOR

Cino Hilliard (hillcino368(AT)gmail.com), Jan 09 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 16:13 EST 2012. Contains 206050 sequences.