Find prime n such that reversed n is also prime
unit sub MAIN ($limit = 500);
say "{+$_} reversible primes < $limit:\n{$_».fmt("%" ~ $limit.chars ~ "d").batch(10).join("\n")}",
with ^$limit .grep: { .is-prime and .flip.is-prime }
Output:
34 reversible primes < 500:
2 3 5 7 11 13 17 31 37 71
73 79 97 101 107 113 131 149 151 157
167 179 181 191 199 311 313 337 347 353
359 373 383 389
PreviousFind palindromic numbers in both binary and ternary basesNextFind prime numbers of the form nnn 2
Last updated
Was this helpful?