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 A240882 #21 Apr 09 2024 22:00:29 %S A240882 6,7,9,11,15,21,23,27,33,35,47,77,83,143,167,227,437 %N A240882 Numbers m such that m - 4*k^2 is a prime for all k > 0 with k^2 < m/4. %C A240882 No other terms with m < 1000000. - _Colin Barker_, Apr 14 2014 %C A240882 If it exists, a(18) > 10^9. - _Jon E. Schoenfield_, Mar 17 2024 %e A240882 21 is in this sequence because 21 - 4*1^2 = 17 and 21 - 4*2^2 = 5 are both prime. %t A240882 n=6;Monitor[Parallelize[While[True,If[MemberQ[PrimeQ[Table[n-4*k^2,{k,1,Floor[Sqrt[n/4]]}]],False]==False,Print[n]];n++];n],n] (* _J.W.L. (Jan) Eerland_, Mar 17 2024 *) %o A240882 (PARI) isOK(n) = k=1; until(k^2>=n/4, if(!isprime(n-4*k^2), return(0)); k++); 1; %o A240882 for(n=3, 1000000, if(isOK(n), print1(n, ", "))) \\ _Colin Barker_, Apr 14 2014 %Y A240882 Cf. A240842. %K A240882 nonn,more %O A240882 1,1 %A A240882 _Ilya Lopatin_ and _Juri-Stepan Gerasimov_, Apr 14 2014 %E A240882 One missing term and one additional term from _Colin Barker_, Apr 14 2014