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

A056628
a(n) = A056623(n!).
1
1, 1, 1, 1, 1, 144, 144, 144, 1296, 518400, 518400, 230400, 230400, 2822400, 9144576, 146313216, 146313216, 21069103104, 21069103104, 52672757760000, 119439360000, 3613040640000, 3613040640000, 18730002677760000, 468250066944000000, 19783565328384000000, 19783565328384000000
OFFSET
1,6
COMMENTS
Previous name "Largest unitary square divisor of n!" was incorrect. See A374988 for the correct sequence with this name. - Amiram Eldar, Jul 26 2024
FORMULA
a(n) = A055071(n)/A055230(n)^2 = A008833(n!)/A055229(n!)^2.
a(n) = A056623(n!). - Michel Marcus, Aug 16 2020
a(n) = A056627(n)^2. - Amiram Eldar, Jul 08 2024
EXAMPLE
a(12) = A056623(12!) = A008833(12!)/A055229(12!)^2 = 2073600/3^2 = 230400.
MATHEMATICA
f[p_, 1] := 1; f[p_, e_] := If[EvenQ[e], p^e, p^(e-3)]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n!]; Array[a, 27] (* Amiram Eldar, Jul 08 2024 *)
PROG
(PARI)
A055229(n) = { my(c=core(n)); gcd(c, n/c); }; \\ Charles R Greathouse IV, Nov 20 2012
A008833(n) = n/core(n) \\ Michael B. Porter, Oct 17 2009
A056623(n) = (A008833(n)/(A055229(n)^2)); \\ Antti Karttunen, Nov 19 2017
a(n) = A056623(n!); \\ Michel Marcus, Aug 16 2020
KEYWORD
nonn
AUTHOR
Labos Elemer, Aug 08 2000
EXTENSIONS
More terms from Michel Marcus, Aug 16 2020
Incorrect name replaced with a formula by Amiram Eldar, Jul 26 2024
STATUS
approved