login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A062935
Palindromes of the form n! + 1.
1
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
Sequence in context: A230778 A111870 A182514 * A083436 A088856 A173913
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