A045510 Factorials having initial digit '2'.
2, 24, 20922789888000, 2432902008176640000, 25852016738884976640000, 265252859812191058636308480000000, 263130836933693530167218012160000000
Offset: 1
Crossrefs
Programs
-
Mathematica
Select[Range[50]!,IntegerDigits[#][[1]]==2&] (* Harvey P. Dale, Mar 21 2020 *)
-
PARI
lista(nn) = {for (n=1, nn, if (digits(n!)[1] == 2, print1(n!, ", ")););} \\ Michel Marcus, Dec 13 2017
Comments