A361502 Index of n-th prime in A359804.
Links
- Rémy Sigrist, C++ program
Programs
-
Mathematica
nn = 2^20; c[] = False; q[] = 1; i = 1; j = 2; c[1] = c[2] = True; u = 3; {2}~Join~Reap[Monitor[Do[ (k = q[#]; While[c[k #], k++]; k *= #; While[c[# q[#]], q[#]++]) &[(p = 2; While[Divisible[i j, p], p = NextPrime[p]]; p)]; If[PrimeQ[k], Sow[n]; Print[n]]; Set[{c[k], i, j}, {True, j, k}]; If[k == u, While[c[u], u++]], {n, 3, nn}], n]][[-1, -1]] (* Michael De Vlieger, Mar 19 2023 *)
Comments