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 A168550 #15 Jan 13 2022 13:25:22 %S A168550 1,2,5,6,9,11,12,20,21,26,27,29,30,32,35,44,57,59,60,71,72,77,86,92, %T A168550 95,96,99,107,111,120,134,140,149,150,152,159,162,164,165,170,185,186, %U A168550 191,192,197,204,221,227,231,237,246,249,252,260,264,266,269,275,290,297 %N A168550 Natural numbers k for which 1 + 2*k^3 is prime. %H A168550 Zak Seidov, <a href="/A168550/b168550.txt">Table of n, a(n) for n = 1..1000</a> %e A168550 20 is a term because 1 + 2*20^3 = 16001 is prime. %p A168550 isA168550 := proc(n) isprime(1+2*n^3) ; end proc: for n from 1 to 400 do if isA168550(n) then printf("%d,",n) ; end if; end do: # _R. J. Mathar_, Nov 30 2009 %t A168550 Select[Range[300],PrimeQ[1+2#^3]&] (* _Harvey P. Dale_, Jan 13 2022 *) %Y A168550 Cf. A201107, A033562, A049408. %K A168550 nonn %O A168550 1,2 %A A168550 _Juri-Stepan Gerasimov_, Nov 29 2009 %E A168550 Terms beyond 21 from _R. J. Mathar_, Nov 30 2009 %E A168550 Example corrected by _Jon E. Schoenfield_, May 11 2019