The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A061485 Numerator of 1/(2n-1) + 3/(2n-3) + 5/(2n-5) + ...(2n-1)/1. 0
1, 10, 31, 988, 811, 19102, 131093, 1096792, 2420773, 95052434, 48911887, 4616289884, 5904218077, 36168951362, 534488973899, 269764710179504, 17133785963669, 34783298901958, 652516251742073, 2644314567590492 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(1)=1, a(2)=10 as (1/3 + 3/1) = 10/3, a(3)=31 as 1/5 + 3/3 + 5/1 = 31/5.
PROG
(Rexx)
numeric digits 100; do N = 1 to 22; X = 1; do K = 1 to N; X = X*(2*K-1); end K; Y = 0; do K = 1 to N; Y = Y +(2*K-1)*X/(2*N-(2*K-1)); end K; say Y / GCD(X, Y); end; N
CROSSREFS
Sequence in context: A097236 A332254 A280202 * A136335 A008422 A063926
KEYWORD
nonn,frac,easy
AUTHOR
Amarnath Murthy, May 06 2001
EXTENSIONS
Corrected and extended by Frank Ellermann
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 May 13 01:02 EDT 2024. Contains 372497 sequences. (Running on oeis4.)