OFFSET
1,5
LINKS
T. D. Noe, Table of n, a(n) for n = 1..200
EXAMPLE
The positive integers which are <= 10 and are coprime to 10 are 1,3,7,9. So a(10) = 1*3*7*9/lcm(1,3,7,9) = 189/63 = 3.
MATHEMATICA
Table[s = Select[Range[1, n], GCD[#, n] == 1 &]; (Times @@ s)/(LCM @@ s), {n, 30}] (* T. D. Noe, Oct 04 2012 *)
PROG
(Sage)
def Gauss_factorial(N, n): return mul(j for j in (1..N) if gcd(j, n) == 1)
def L(N, n): return lcm([j for j in (1..N) if gcd(j, n) == 1])
def A128247(n): return Gauss_factorial(n, n)/L(n, n)
[A128247(n) for n in (1..34)] # Peter Luschny, Oct 02 2012
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, May 03 2007
EXTENSIONS
More terms from Sean A. Irvine, Jun 21 2011
STATUS
approved