cp's OEIS Frontend

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.

A177105 Primes of the form 2*n^3-1.

This page as a plain text file.
%I A177105 #16 May 03 2024 19:55:49
%S A177105 53,127,431,1999,8191,18521,27647,31249,59581,78607,159013,194671,
%T A177105 314927,332749,390223,453961,524287,657017,1062881,1457999,1507141,
%U A177105 1608713,1940597,2519423,3455999,4000751,4393999,5371237,5606441
%N A177105 Primes of the form 2*n^3-1.
%H A177105 Vincenzo Librandi, <a href="/A177105/b177105.txt">Table of n, a(n) for n = 1..1000</a>
%F A177105 a(n) = 2*A214289(n)^3 -1. - _R. J. Mathar_, Aug 20 2019
%t A177105 Select[Table[2 n^3 - 1, {n, 0, 300}], PrimeQ] (* _Vincenzo Librandi_, Jul 25 2012 *)
%o A177105 (Magma) [a: n in [0..250] | IsPrime(a) where a is (2*n^3-1)];
%o A177105 (PARI) for(n=0, 200, if(isprime(k=2*n^3-1), print1(k",  "))); \\ _Vincenzo Librandi_, Jul 25 2012
%K A177105 nonn,easy
%O A177105 1,1
%A A177105 _Vincenzo Librandi_