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.

A225098 Numbers k such that k^2 - 2 and 2*k^2 - 1 are both prime.

This page as a plain text file.
%I A225098 #27 Aug 31 2020 02:40:17
%S A225098 2,3,7,13,15,21,43,49,63,69,127,155,183,211,231,237,259,265,273,293,
%T A225098 301,323,335,391,435,441,447,489,505,573,595,671,713,715,743,757,797,
%U A225098 811,951,959,973,979,987,993,1035,1147,1197,1287,1359,1393,1415,1429,1443,1491,1525,1597,1617,1653
%N A225098 Numbers k such that k^2 - 2 and 2*k^2 - 1 are both prime.
%C A225098 Primes in the sequence: 2, 3, 7, 13, 43, 127, 211, 293, 743, 757, 797, 811, 1429,...
%H A225098 Amiram Eldar, <a href="/A225098/b225098.txt">Table of n, a(n) for n = 1..10000</a>
%e A225098 2^2 - 2 = 2 is prime and 2*2^2 - 1 = 7 is prime, so a(1) = 2.
%t A225098 Select[Range[1653], PrimeQ[#^2 - 2] && PrimeQ[2*#^2 - 1] &] (* _T. D. Noe_, May 10 2013 *)
%Y A225098 Intersection of A028870 and A066049.
%K A225098 nonn
%O A225098 1,1
%A A225098 _Gerasimov Sergey_, Apr 27 2013
%E A225098 Corrected by _R. J. Mathar_, May 05 2013