OFFSET
0,3
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..735 (first 101 terms from Kevin P. Thompson)
EXAMPLE
a(10) = 5040 since 10! = 3628800 and the smallest square divisible by this is 25401600 = 3628800*7 = 5040^2.
MAPLE
a:= n-> mul(i[1]^ceil(i[2]/2), i=ifactors(n!)[2]):
seq(a(n), n=0..26); # Alois P. Heinz, Jan 24 2022
MATHEMATICA
f[p_, e_] := p^Ceiling[e/2]; a[0] = a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n!]; Array[a, 30, 0] (* Amiram Eldar, Feb 11 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Henry Bottomley, Nov 27 2001
EXTENSIONS
Missing a(0) inserted, formula corrected, and a(25)-a(26) added by Kevin P. Thompson, Jan 24 2022
STATUS
approved