This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A369097 #65 Jun 11 2024 03:24:53 %S A369097 3,5,541,997,328753,5385217,1287133,9483302497,107887226353 %N A369097 Least starting prime of exactly n consecutive primes p_i (i = 1..n) such that bigomega(p_i + 1) = 1 + i. %e A369097 a(1) = 3, because bigomega(3+1) = 2 and no lesser number has this property. %e A369097 a(2) = 5, because bigomega(5+1) = 2 and bigomega(7+1) = 3, and no lesser number has this property. %e A369097 a(3) = 541, because bigomega(541+1) = 2, bigomega(547+1) = 3, bigomega(557+1) = 4 and no lesser number has this property. %o A369097 (PARI) isok(p, n) = if (bigomega(p+1) != 2, return(0)); for (i=1, n-1, p = nextprime(p+1); if (bigomega(p+1) != i+2, return(0))); if (bigomega(nextprime(p+1)+1) == n+2, return(0)); return(1); %o A369097 a(n) = my(p=2); while (!isok(p, n), p = nextprime(p+1)); p; \\ _Michel Marcus_, Jun 07 2024 %Y A369097 Cf. A001222, A072875. %K A369097 nonn,more %O A369097 1,1 %A A369097 _Jean-Marc Rebert_, Jun 07 2024