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 A023353 #30 Sep 08 2022 08:44:47 %S A023353 421,773,1567,4111,68447,75721,111373,127301,137927,140321,156593, %T A023353 170767,177131,192341,194687,202637,240641,254407,254963,308303, %U A023353 321821,332951,395431,464131,515663,710081,822893,856393,989533,997123,1012201,1047077 %N A023353 Primes that remain prime through 5 iterations of the function f(x) = 9x + 4. %C A023353 Primes p such that 9*p+4, 81*p+40, 729*p+364, 6561*p+3280 and 59049*p+29524 are also primes. - _Vincenzo Librandi_, Aug 05 2010 %H A023353 John Cerkan, <a href="/A023353/b023353.txt">Table of n, a(n) for n = 1..10000</a> %t A023353 okQ[n_]:=And@@PrimeQ/@Rest[NestList[9#+4&,n,5]]; Select[Prime[Range[100000]],okQ] (* _Harvey P. Dale_, Jan 29 2011 *) %o A023353 (Magma) [n: n in [1..19000000] | IsPrime(n) and IsPrime(9*n+4) and IsPrime(81*n+40) and IsPrime(729*n+364) and IsPrime(6561*n+3280) and IsPrime(59049*n+29524)] // _Vincenzo Librandi_, Aug 05 2010 %Y A023353 Subsequence of A023234, A023266, A023297, and A023325. %K A023353 nonn %O A023353 1,1 %A A023353 _David W. Wilson_