OFFSET
1,3
COMMENTS
The corresponding palindromic numbers are 1, 1, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 22, 33, 44, 55, 77, 88, 99, 101, ...
Nice result: 22 is a palindrome and 22! has 22 digits, and also, 44! has 55 digits.
EXAMPLE
14! = 87178291200 that has 11 digits, 11 is a palindrome, hence 14 is a term.
MATHEMATICA
Select[Range[0, 532], PalindromeQ @ Length @ IntegerDigits[#!] &] (* Amiram Eldar, Mar 28 2020 *)
Select[Range[0, 550], PalindromeQ[IntegerLength[#!]]&] (* Harvey P. Dale, Oct 30 2023 *)
PROG
(PARI) isok(m) = my(d=digits(#Str(m!))); d == Vecrev(d); \\ Michel Marcus, Mar 28 2020
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Bernard Schott, Mar 28 2020
STATUS
approved