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”).

A056195
a(n) = n! divided by its characteristic cube divisor A056194.
2
1, 2, 6, 3, 15, 720, 5040, 5040, 45360, 3628800, 39916800, 17740800, 230630400, 403603200, 1307674368, 20922789888, 355687428096, 51218989645824, 973160803270656, 2432902008176640000, 5516784599040000
OFFSET
1,2
LINKS
FORMULA
The CCD of n! is the cube of g = A055229(n!) = A055230(n). So a(n) = n!/ggg = L*L*f where L = A000188(n!)/A055229(n!) = A055772(n)/A055230(n) and f = A055231(n!) = A055773(n).
EXAMPLE
n = 10, a(10) = 10! because g(10!) = 1.
n = 9, a(9) = 45320 because 9! = 2*2*2*2*2*2*2*3*3*5*7 and g(9!) = 2, so a(9) = 9!/8.
MATHEMATICA
f[p_, e_] := If[OddQ[e] && e > 1, p^3, 1]; a[n_] := n! / (Times @@ f @@@ FactorInteger[n!]); Array[a, 20] (* Amiram Eldar, Sep 06 2020 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Aug 02 2000
STATUS
approved