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!)
A232985 The Gauss factorial n_11!. 7
1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 3628800, 3628800, 43545600, 566092800, 7925299200, 118879488000, 1902071808000, 32335220736000, 582033973248000, 11058645491712000, 221172909834240000, 4644631106519040000, 4644631106519040000, 106826515449937920000, 2563836370798510080000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
The Gauss factorial n_k! is defined to be Product_{1<=j<=n, gcd(j,k)=1} j.
LINKS
J. B. Cosgrave and K. Dilcher, An introduction to Gauss factorials, Amer. Math. Monthly, 118 (2011), 810-828.
J. B. Cosgrave and K. Dilcher, The Gauss-Wilson theorem for quarter-intervals, Acta Mathematica Hungarica, Sept. 2013.
MAPLE
Gf:=proc(N, n) local j, k; k:=1;
for j from 1 to N do if gcd(j, n)=1 then k:=j*k; fi; od; k; end;
f:=n->[seq(Gf(N, n), N=0..40)];
f(11);
PROG
(Magma) k:=11; [IsZero(n) select 1 else &*[j: j in [1..n] | IsOne(GCD(j, k))]: n in [0..30]]; // Bruno Berselli, Dec 10 2013
CROSSREFS
The Gauss factorials n_1!, n_2!, n_3!, n_5!, n_6!, n_7!, n_10!, n_11! are A000142, A055634, A232980-A232985 respectively.
Sequence in context: A072133 A230232 A319551 * A319212 A276844 A273697
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Dec 08 2013
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 March 19 03:33 EDT 2024. Contains 370952 sequences. (Running on oeis4.)