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!)
A182922 a(n) = n! / A055773(n). 2
1, 1, 1, 1, 8, 8, 144, 144, 1152, 10368, 518400, 518400, 6220800, 6220800, 609638400, 9144576000, 146313216000, 146313216000, 2633637888000, 2633637888000, 52672757760000, 1106127912960000, 267682954936320000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
a(n) = n! * P(floor(n/2))/P(n), where P(n) is a primorial number (A034386).
LINKS
MAPLE
A182922 := n -> n! / mul(k, k=select(isprime, [$iquo(n, 2)+1..n])):
# Or without division:
a182922 := proc(n) local k, i, R;
R := {seq(i, i=1..n)} minus {op(select(isprime, [seq(i, i=iquo(n, 2)+1..n)]))};
mul(k, k=R) end:
MATHEMATICA
a[n_] := n!/Numerator[n!/Floor[n/2]!^4];
Table[a[n], {n, 0, 22}] (* Jean-François Alcover, Jun 18 2019 *)
CROSSREFS
Sequence in context: A255006 A074191 A090630 * A135808 A320915 A298905
KEYWORD
nonn
AUTHOR
Peter Luschny, Mar 05 2011
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)