login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A062935 Palindromes of the form n! + 1. 1
2, 3, 7, 121 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)