Ist es möglich das diese Zahlen prim sind?
Ja. *Edit Beispiel aus dem Kommentar entfernt.
Mit dem folgenden (Java) Programm kannst Du Dich auf die Suche begeben:
public class Main {
static int faculty(int n) {
return n == 1 || n == 0 ? 1 : n * faculty(n - 1);
}
public static boolean is_prime(final int to_check) {
final String regex = "(..+?)\\1+|.?";
return !new String(new char[to_check]).matches(regex);
}
public static void main(final String... args) {
int counter = 0;
int to_check = 0;
while (true) {
to_check = faculty(counter) * faculty(counter + 1) - 1;
if (is_prime(to_check)) {
System.out.printf("n=%d, value=%d\n",counter,to_check);
}
counter++;
}
}
}
Als Ergebnisse erhältst Du unter anderem:
n=2, value=11
n=4, value=2879
n=5, value=86399