Özyinelemeli Asal Asal değerler,
p(1) = 2
p(n) = the p(n-1)th prime
İşte 4. Özyinelemeli Prime Prime'ı nasıl hesaplayabileceğinize bir örnek.
p(4) = the p(3)th prime
p(3) = the p(2)th prime
p(2) = the p(1)th prime
p(1) = 2
p(2) = the 2nd prime
p(2) = 3
p(3) = the 3rd prime
p(3) = 5
p(4) = the 5th prime
p(4) = 11
N verildiğinde, n. Özyinelemeli Prime Prime çıktısı veren bir program veya işlev yazmalısınız.
İsterseniz 0 tabanlı indekslemeyi kullanmayı tercih edebilirsiniz, bu durumda cevabınızda belirtmeniz gerekir.
Bu kod golf, böylece bayt sayınızı en aza indirmek amaç.
Test Durumları
1 -> 2
2 -> 3
3 -> 5
4 -> 11
5 -> 31
6 -> 127
7 -> 709
8 -> 5381
9 -> 52711
İlgili OEIS girişi: OEIS A007097
⁸
.