OFFSET
1,1
COMMENTS
This sequence follows conjecture from A201278 that Mordell's elliptic curve x^3-y^2 = d can contain points {x,y} with quadratic extension sqrt(k) over rationals if and only k belongs to this sequence.
Members of A072437 that are not perfect squares. - Franklin T. Adams-Watters, Dec 15 2011
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
a(3)=8 because 8 isn't perfect square and only one prime divisor 2 is congruent to 2 mod 4.
MATHEMATICA
aa = {}; Do[pp = FactorInteger[j]; if = False; Do[If[Mod[pp[[n]][[1]], 4] == 3 || Mod[pp[[n]][[1]], 4] == 0, if = True], {n, 1, Length[pp]}]; If[if == False, If[IntegerQ[Sqrt[j]] == False, AppendTo[aa, j]]], {j, 2, 200}]; aa
seqQ[n_] := !IntegerQ@Sqrt[n] && AllTrue[FactorInteger[n][[;; , 1]], MemberQ[{1, 2}, Mod[#, 4]] &]; Select[Range[300], seqQ] (* Amiram Eldar, Mar 21 2020 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Artur Jasinski, Dec 10 2011
STATUS
approved