OFFSET
1,1
EXAMPLE
121 = 5! + 1.
MATHEMATICA
Select[Range[10]!+1, PalindromeQ] (* Harvey P. Dale, Apr 17 2022 *)
PROG
(Python)
A062935_list, n = [], 1
for i in range(1, 10**3):
....n *= i
....s = str(n+1)
....if s == s[::-1]:
........A062935_list.append(n+1) # Chai Wah Wu, Dec 03 2014
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Amarnath Murthy, Jul 05 2001
EXTENSIONS
Comment from Dean Hickerson, Jul 06 2001: I doubt that there are any more terms, but I see no hope of proving that. If there are any more terms, they're too large to fit.
STATUS
approved