OFFSET
1,2
COMMENTS
a(n) is divisible by central binomial coefficients, A001405[n]
EXAMPLE
a(6) = 6*8*9*10*12 = 51840.
MAPLE
for n from 1 to 50 do l := 1:for j from n to 2*n do if not isprime(j) then l := l*j:fi:od:a[n] := l:od:seq(a[j], j=1..50);
MATHEMATICA
cs[x_] := Flatten[Position[Table[PrimeQ[j], {j, x, 2*x}], False]]+x-1; prcs[x_] := Apply[Times, cs[x]]; Table[prcs[w], {w, 1, 25}]
PROG
(PARI) a(n)=prod(i=n, 2*n, i^if(isprime(i), 0, 1))
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Aug 13 2002
EXTENSIONS
More terms from Sascha Kurz and Labos Elemer, Aug 14 2002
STATUS
approved