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 A094524 #15 Oct 13 2021 03:34:11 %S A094524 11,17,23,41,53,59,71,89,113,131,179,239,251,269,293,311,383,419,449, %T A094524 491,503,521,593,599,683,701,719,773,809,881,941,953,1013,1049,1061, %U A094524 1103,1151,1193,1229,1259,1301,1319,1373,1439,1499,1511,1571,1709,1733 %N A094524 Primes of form 3*prime(m) + 2. %H A094524 Reinhard Zumkeller, <a href="/A094524/b094524.txt">Table of n, a(n) for n = 1..10000</a> %F A094524 a(n) = 3*A023208(n) + 2. %e A094524 a(7) = 3*23 + 2 = 71. %t A094524 Select[Table[3*Prime[n]+2,{n,200}],PrimeQ] (* _Vladimir Joseph Stephan Orlovsky_, Feb 01 2012 *) %o A094524 (PARI) forprime(p=2,600,if(isprime(q=3*p+2),print1(q,","))) %o A094524 (Haskell) %o A094524 a094524 = (+ 2) . (* 3) . a023208 -- _Reinhard Zumkeller_, Aug 15 2011 %Y A094524 Cf. A023208, A091180. %K A094524 nonn,easy %O A094524 1,1 %A A094524 _Klaus Brockhaus_, May 07 2004