OFFSET
1,2
COMMENTS
Also see comments in A046022 = primes together with 1 and 4.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..150
FORMULA
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 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Jun 09 2007
EXTENSIONS
More terms from Alois P. Heinz, Oct 26 2012
STATUS
approved