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 A262203 #58 May 10 2025 16:16:51 %S A262203 2,5,13,37,53,173,277,317,557,613,733,797,1237,1493,1973,2293,3533, %T A262203 4253,4877,5717,9293,9973,12157,12413,14557,16573,17477,19037,20333, %U A262203 22013,23053,26317,26693,30197,32237,32653,33493,37853,40597,44893,50957,53597,54133 %N A262203 Primes of the form k*(k+2)/3 - 3, k>2. %C A262203 Primes p such that 3*p + 10 is a square. %e A262203 a(1) = 2 because 2*3 + 10 = 16, which is a square. %e A262203 a(1) = 2 because 3*(3 + 2)/3 - 3 = 2 is prime. %t A262203 Select[Table[(k (k + 2))/3 - 3, {k, 2, 450}], PrimeQ] %o A262203 (Magma) [a: k in [2..250] | IsPrime(a) where a is k*(k+2) div 3 - 3 ]; %o A262203 (Magma) [p: p in PrimesUpTo(60000) | IsSquare(3*p+10)]; %o A262203 (PARI) forprime(p=2, 1e5, if(issquare(3*p+10), print1(p , ", "))) \\ _Altug Alkan_, Dec 05 2015 %Y A262203 Cf. A162307, A201716. %K A262203 nonn,easy %O A262203 1,1 %A A262203 _Vincenzo Librandi_, Dec 05 2015