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!)
A094337 a(n) = floor((product of composites among next n numbers)/(product of primes among next n numbers)). 2
0, 1, 4, 1, 617, 112, 845, 25376, 2985, 314, 1597052, 138874, 1173486218, 63368255819, 4370224539, 281949970, 5377913733006, 376453961310474, 7345939461247630, 572983277977315172, 27950403803771471, 1300018781570766 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
The products of primes in the denominators are in A068111 for n>=2. - R. J. Mathar, Jul 27 2007
LINKS
EXAMPLE
a(3) = floor((4*6)/5) = 4.
a(4) = floor(6*8/(5*7)) = floor(48/35) = 1.
a(5) = floor(6*8*9*10/7) = floor(4320/7) = 617.
MAPLE
A094337 := proc(n) local nup, ndown, i ; nup := 0 ; ndown := 0 ; for i from n+1 to 2*n do if isprime(i) then if ndown = 0 then ndown :=i ; else ndown := ndown*i ; fi ; else if nup = 0 then nup := i ; else nup := nup*i ; fi ; fi ; od; floor(nup/ndown) ; end: seq(A094337(n), n=1..24) ; # R. J. Mathar, Jul 27 2007
CROSSREFS
Sequence in context: A347554 A298939 A240098 * A345313 A038019 A164804
KEYWORD
nonn
AUTHOR
Amarnath Murthy, May 17 2004
EXTENSIONS
Corrected and extended by R. J. Mathar, Jul 27 2007
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 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)