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

A192140
Palindromic numbers m such that their concatenation of prime divisors are also palindromic numbers.
4
2, 3, 4, 5, 7, 8, 9, 11, 101, 121, 131, 151, 181, 191, 313, 343, 353, 373, 383, 727, 747, 757, 787, 797, 919, 929, 1331, 10001, 10201, 10301, 10501, 10601, 11311, 11411, 12421, 12721, 12821, 13331, 13831, 13931, 14341, 14641, 14741, 15451, 15551, 16061, 16361
OFFSET
1,1
COMMENTS
The corresponding values of palindromic concatenation in A192141.
Superset of A002385 (palindromic primes) and A084092 (prime power decimal palindromes).
Subset of A002113 (palindromic numbers) and A192137.
EXAMPLE
Concatenation of prime divisors of number 747 = 3^2 * 83 is 383 (palindromic number).
MATHEMATICA
f[n_] := FromDigits[Flatten[IntegerDigits /@ FactorInteger[n][[;; , 1]]]]; Select[Range[2, 20000], And @@ (PalindromeQ /@ {#, f[#]}) &] (* Amiram Eldar, Aug 06 2024 *)
KEYWORD
nonn,base
AUTHOR
Jaroslav Krizek, Jun 24 2011
EXTENSIONS
More terms from Amiram Eldar, Aug 06 2024
STATUS
approved