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 A271676 #19 Sep 08 2022 08:46:16 %S A271676 4,7,32,64 %N A271676 Prime powers k such that 3k + 4 is a perfect square. %C A271676 This sequence is complete. For proof see the link. - _Altug Alkan_, Apr 15 2016 %H A271676 Altug Alkan, <a href="/A271676/a271676.txt">Proof of Fini and Full</a> %e A271676 4 is in this sequence because 3*4 + 4 = 16 = 4^2, %e A271676 7 is in this sequence because 3*7 + 4 = 25 = 5^2, %e A271676 32 is in this sequence because 3*32 + 4 = 100 = 10^2, %e A271676 64 is in this sequence because 3*64 + 4 = 196 = 14^2. %t A271676 Select[Range[10^4], PrimePowerQ@ # && IntegerQ@ Sqrt[3 # + 4] &] (* _Michael De Vlieger_, Apr 12 2016 *) %o A271676 (Magma) [n: n in [2..10000000] | IsPrimePower(n) and IsSquare(3*n + 4)]; %o A271676 (PARI) lista(nn) = for(n=1, nn, if(isprimepower(n) && issquare(3*n+4), print1(n, ", "))); \\ _Altug Alkan_, Apr 12 2016 %Y A271676 Cf. A000961, A271675. %K A271676 nonn,fini,full %O A271676 1,1 %A A271676 _Juri-Stepan Gerasimov_, Apr 12 2016