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 A023332 #21 May 10 2024 04:29:07 %S A023332 13,541,1087,1861,3727,23293,40387,87643,98899,109111,115153,116329, %T A023332 119101,131617,133597,163909,197521,214021,215389,218227,238207, %U A023332 263239,294751,489901,493693,665527,734131,767881,808693,895351,1038127,1051957 %N A023332 Primes that remain prime through 5 iterations of function f(x) = 2x + 5. %C A023332 Primes p such that 2*p+5, 4*p+15, 8*p+35, 16*p+75 and 32*p+155 are also primes. - _Vincenzo Librandi_, Aug 04 2010 %H A023332 John Cerkan, <a href="/A023332/b023332.txt">Table of n, a(n) for n = 1..10000</a> %F A023332 a(n) == 1 (mod 6). - _John Cerkan_, Oct 09 2016 %t A023332 txQ[p_]:=AllTrue[NestList[2#+5&,p,5],PrimeQ]; Select[Prime[Range[83000]],txQ] (* _Harvey P. Dale_, May 10 2024 *) %o A023332 (Magma) [n: n in [1..5000000] | IsPrime(n) and IsPrime(2*n+5) and IsPrime(4*n+15) and IsPrime(8*n+35) and IsPrime(16*n+75) and IsPrime(32*n+155)] // _Vincenzo Librandi_, Aug 04 2010 %Y A023332 Subsequence of A023205, A023243, A023274, A023304, and A089038. %K A023332 nonn %O A023332 1,1 %A A023332 _David W. Wilson_