OFFSET
1,1
COMMENTS
Contains A075407 (Non-palindromic numbers such that the largest proper divisor is a palindrome having at least two digits and no other divisor is a palindrome with at least two digits) as a subsequence.
Two-digit numbers divisible by nontrivial palindromes are divisible by 11 and are palindromes themselves. Thus, the smallest number in this sequence has at least three digits.
The first nine terms are divisible by 11, but the tenth term (302) is not. Its largest proper divisor is 151.
LINKS
Karl-Heinz Hofmann, Table of n, a(n) for n = 1..10000
EXAMPLE
The largest proper divisor of the non-palindrome 110 is a nontrivial palindrome 55. Thus, 110 is in this sequence.
The largest nontrivial divisor of the non-palindrome 143 is 13. Thus, though 143 is divisible by 11 it is not in this sequence.
PROG
(Python)
from sympy import divisors
def ispal(s): return s == s[::-1]
def ok(n):
if ispal(str(n)): return False
lpd = divisors(n)[-2]
return lpd > 10 and ispal(str(lpd))
print(list(filter(ok, range(1060)))) # Michael S. Branicky, Jun 17 2021
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Tanya Khovanova, Jun 17 2021
STATUS
approved