A109915
Product of all composite numbers k such that n
1, 1, 4, 1, 6, 1, 720, 90, 10, 1, 12, 1, 3360, 240, 16, 1, 18, 1, 9240, 462, 22, 1, 11793600, 491400, 19656, 756, 28, 1, 30, 1, 45239040, 1413720, 42840, 1260, 36, 1, 59280, 1560, 40, 1, 42, 1, 91080, 2070, 46, 1, 311875200, 6497400, 132600, 2652
Offset: 1
Examples
a(7) = 8*9*10 = 720.
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
Crossrefs
Cf. A109914.
Programs
-
Maple
A109915 := proc(n) local a,rm1,k; a := 1: rm1 := numtheory[pi](n) ; for k from n+1 to ithprime(rm1+1) do if not isprime(k) then a := a*k; fi; od: RETURN(a) ; end: seq(A109915(n),n=1..50) ; # R. J. Mathar, Aug 15 2007
Extensions
Corrected and extended by R. J. Mathar, Aug 15 2007
Comments