[go: up one dir, main page]

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

A367793
Primes p such that the sum of p and its reversal is a semiprime.
2
2, 3, 5, 7, 11, 23, 29, 41, 43, 47, 61, 67, 83, 89, 101, 131, 151, 181, 191, 211, 223, 227, 233, 251, 293, 313, 353, 373, 383, 401, 409, 419, 421, 431, 433, 449, 457, 487, 491, 571, 599, 601, 607, 617, 619, 631, 643, 647, 727, 757, 787, 797, 809, 821, 827, 829, 853, 859, 877, 883, 919, 929, 2011
OFFSET
1,1
COMMENTS
Terms > 11 with an even number of digits have an even first digit.
LINKS
EXAMPLE
a(6) = 23 is a term because 23 is a prime and 23 + 32 = 55 = 5 * 11 is a semiprime.
MAPLE
digrev:= proc(n) local L, i;
L:= convert(n, base, 10);
add(L[-i]*10^(i-1), i=1..nops(L))
end proc:
select(p -> isprime(p) and numtheory:-bigomega(p+digrev(p))=2, [2, seq(i, i=3..10000, 2)]);
MATHEMATICA
Select[Prime[Range[10^4]], 2 == PrimeOmega[# + FromDigits[Reverse[IntegerDigits[#]]]] &]]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Zak Seidov and Robert Israel, Nov 30 2023
STATUS
approved