This Program generates Permutable Primes. The interesting element of this program is finding all permutations of a given number. The implemented solution uses a cute recursive algorithm of moderate efficiency. Main bottleneck are in generating the primes. Change to sieve of Atkin?
RasPat1/Permutable
This is a short program to calculate permutable primes. The interesting element in this was to find a method that would generate all teh permutations of a number.
HTML