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 A162293 #16 Jul 28 2020 15:31:26 %S A162293 2,3,4,6,7,9,12,13,18,21,22,30,33,46,48,57,58,61,66,67,75,79,85,87,90, %T A162293 94,96,99,100,106,111,114,117,118,120,121,127,129,133,138,144,153,160, %U A162293 162,171,174,175,186,187,195,199,202,204,220,222,223,231,243,246,252 %N A162293 Numbers k such that k^2*(k-1)-1 is prime. %H A162293 Ivan Neretin, <a href="/A162293/b162293.txt">Table of n, a(n) for n = 1..10000</a> %F A162293 a(n)^2 * ( a(n)-1 )-1 = A162291(n). %e A162293 a(1)=2 since 2^3-2^2-1=3 is prime. %e A162293 a(2)=3 since 3^3-3^2-1=17 is prime. %e A162293 a(3)=4 since 4^3-4^2-1=47 is prime. %t A162293 lst={};Do[s=n^3-n^2;If[PrimeQ[s-1],AppendTo[lst,n]],{n,6!}];lst %Y A162293 Cf. A087908, A162291 (corresponding primes), A111501. %K A162293 nonn %O A162293 1,1 %A A162293 _Vladimir Joseph Stephan Orlovsky_, Jun 30 2009 %E A162293 Comments moved to the examples by _R. J. Mathar_, Sep 11 2009