A246048 Numbers for which (n^2)! is divisible by n!^n*(2n)!.
6, 12, 14, 15, 21, 22, 24, 26, 28, 30, 35, 38, 39, 42, 44, 45, 46, 48, 50, 51, 52, 54, 55, 56, 57, 58, 60, 62, 63, 69, 70, 74, 75, 76, 77, 78, 82, 84, 85, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 98, 99
Offset: 1
Keywords
Programs
-
PARI
max_k(n)=for(k=1,m=n,Mod((n*m)!,m!^n*(k*n)!) && return(k-1)) \\ returns the maximal k for m=n. for(n=1,99,a(n)>1&&print1(n,",")) \\ prints this sequence
Comments