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 A032685 #14 Sep 05 2022 02:05:42 %S A032685 1,2,10,19,20,23,31,34,41,43,47,53,61,62,64,67,68,71,73,74,76,82,83, %T A032685 85,92,94,100,101,107,109,112,113,115,119,122,124,130,136,145,149,152, %U A032685 163,190,193,196,200,211,217,218,221,226,236,239,241,245 %N A032685 Numbers k such that k surrounded by digit '9' is a prime. %H A032685 Harvey P. Dale, <a href="/A032685/b032685.txt">Table of n, a(n) for n = 1..1000</a> %t A032685 Select[Range[300],PrimeQ[FromDigits[Join[{9},IntegerDigits[#],{9}]]]&] (* _Harvey P. Dale_, Jul 20 2012 *) %o A032685 (Python) %o A032685 from sympy import isprime %o A032685 def ok(n): return isprime(int('9' + str(n) + '9')) %o A032685 print([k for k in range(250) if ok(k)]) # _Michael S. Branicky_, Sep 04 2022 %Y A032685 Cf. A032682, A032683, A032684, A032690. %K A032685 nonn,base %O A032685 1,2 %A A032685 _Patrick De Geest_, May 15 1998