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.

A106483 Primes p such that 2*p^2 - 1 is also prime.

This page as a plain text file.
%I A106483 #41 Sep 17 2024 15:44:31
%S A106483 2,3,7,11,13,17,41,43,59,73,109,113,127,137,157,179,181,197,199,211,
%T A106483 251,263,277,293,311,353,367,379,409,419,433,487,563,571,577,617,619,
%U A106483 659,701,739,743,757,797,811,827,829,839,857,937,941,1009,1039,1063
%N A106483 Primes p such that 2*p^2 - 1 is also prime.
%H A106483 Alois P. Heinz, <a href="/A106483/b106483.txt">Table of n, a(n) for n = 1..10000</a> (first 1000 terms from T. D. Noe)
%F A106483 a(n) is in this sequence iff A007588(a(n)) is an element of A001358.
%F A106483 a(n) is in this sequence iff A106482(a(n)) = 2.
%F A106483 a(n) is in this sequence iff a(n) is prime and 2*a(n)^2-1 is also prime.
%F A106483 a(n) = prime(A092058(n)). - _R. J. Mathar_, Aug 20 2019
%p A106483 q:= p-> andmap(isprime, [p, 2*p^2-1]):
%p A106483 select(q, [$2..2000])[];  # _Alois P. Heinz_, Jun 21 2022
%t A106483 Select[Table[Prime[n], {n, 500}], PrimeQ[2*#^2 - 1] &] (* _Ray Chandler_, May 03 2005 *)
%o A106483 (Magma) [p: p in PrimesUpTo(2500)|  IsPrime(2*p^2-1)]; // _Vincenzo Librandi_, Jan 29 2011
%Y A106483 Cf. A000040, A001358, A007588, A106482, A106484, A177104 (2p^3-1 prime), A182785 (2p^4-1 prime)
%Y A106483 Cf. A092057 (2p^2 - 1).
%K A106483 easy,nonn
%O A106483 1,1
%A A106483 _Jonathan Vos Post_, May 03 2005
%E A106483 Extended by _Ray Chandler_, May 03 2005