A129906 n!/(n^2) when an integer.
1, 20, 630, 4480, 36288, 3326400, 444787200, 5811886080, 81729648000, 19760412672000, 6082255020441600, 115852476579840000, 2322315553259520000, 1077167364120207360000, 24817936069329577574400, 596585001666576384000000, 14936720782466875392000000
Offset: 1
Links
- Alois P. Heinz, Table of n, a(n) for n = 1..150
Programs
-
Mathematica
f[n_]:=If[PrimeQ[n]||n == 4,0,n!/n^2];Select[Table[f[n],{n,1,40}],#>0&] (* Geoffrey Critzer, Oct 26 2012 *) Select[#!/#^2&/@Range[30],IntegerQ] (* Harvey P. Dale, Jul 17 2024 *)
Formula
Extensions
More terms from Alois P. Heinz, Oct 26 2012
Comments