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 A088566 #10 Jul 29 2024 05:26:49 %S A088566 7,17,29,103,113,137,281,293,457,463,547,601,631,823,1051,1091,1109, %T A088566 1201,1231,1283,1301,1327,1399,1427,1447,1487,1523,1621,1663,1733, %U A088566 1847,1907,1949,2099,2141,2281,2297,2309,2377,2767,3023,3037,3119,3121,3391,3457 %N A088566 Primes p such that the p-th digit in the decimal expansion of Pi is 2. %e A088566 In the decimal digits of Pi = 3.14159265... the first 2 occurs as the 7th digit, and 7 is prime; therefore a(1) = 7. %o A088566 (PARI) pizeros(n,d) = { default(realprecision,5000); p = Pi; v = Vec(Str(p)); for(x=1,n, if(v[x] == Str(d) && isprime(x-1),print1(x-1",")) ) } %o A088566 (PARI) A088566_upto(N=3456, d=2)={localprec(N+20); [p|p<-primes([1, #N=digits(Pi\10^-N)]), N[p]==d]} \\ _M. F. Hasler_, Jul 28 2024 %Y A088566 Primes in A053746. %Y A088566 Cf. A088563 (similar for digits 0), A088565 (for digits 1), %Y A088566 Cf. A000796 (decimal digits of Pi). %K A088566 nonn,base %O A088566 1,1 %A A088566 _Cino Hilliard_, Nov 19 2003