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”).

A144719
Semiprimes whose factors are decimal palindromes when concatenated, omitting multiples of primes less than 11.
2
121, 403, 1207, 1243, 1703, 2321, 2701, 3421, 3503, 3629, 4043, 4061, 4069, 4121, 4247, 4303, 4309, 4607, 5603, 6109, 6401, 7663, 8203, 8921, 9329, 9703, 9707, 9943, 10001, 10021, 10187, 10201, 12223, 12283, 12709, 13129, 13801, 14921, 15007
OFFSET
1,1
COMMENTS
Presumed infinite.
LINKS
EXAMPLE
121 = 11 * 11; 1111 is a palindrome.
4309 = 139 * 31; 13931 is a palindrome.
MATHEMATICA
spdpQ[n_]:=Module[{fi=FactorInteger[n][[All, 1]]}, PrimeOmega[n]==2&&Min[ fi]>10 &&AnyTrue[{FromDigits[Flatten[IntegerDigits/@fi]], FromDigits[ Flatten[ IntegerDigits/@Reverse[fi]]]}, PalindromeQ]]; Select[Range[ 15100], spdpQ] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Sep 12 2020 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Reikku Kulon, Sep 19 2008
STATUS
approved