A060515 Integers i > 1 for which there is no prime p such that i is a solution mod p of x^2 = 2.
2, 10, 28, 39, 45, 54, 58, 74, 87, 88, 101, 108, 114, 116, 130, 143, 147, 156, 164, 168, 178, 180, 181, 225, 228, 235, 238, 242, 244, 248, 256, 263, 270, 271, 277, 304, 305, 317, 318, 325, 333, 334, 338, 347, 363, 367, 373, 374, 378, 380, 381, 386, 397, 402
Offset: 1
Keywords
Examples
a(1) = 2, since there is no prime p such that 2 is a solution mod p of x^2 = 2. a(2) = 10, since there is no prime p such that 10 is a solution mod p of x^2 = 2 and for each integer i from 3 to 9 there is a prime q such that i is a solution mod q of x^2 = 2 (cf. A059772).
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Programs
-
Maple
select(t -> max(numtheory:-factorset(t^2-2)) <= t, [$2..1000]); # Robert Israel, Feb 23 2016
-
PARI
is(n)=my(f=factor(n^2-2)[,1]);n>1&&f[#f]<=n \\ Charles R Greathouse IV, Aug 24 2013
Formula
Integer i > 1 is a term of this sequence iff i^2-2 has no prime factor > i.
Comments