login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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
OFFSET
0,5
COMMENTS
a(n) = n! * P(floor(n/2))/P(n), where P(n) is a primorial number (A034386).
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