OFFSET
1,1
COMMENTS
The least number having exactly two odd prime factors that differ by 2*n^2 is given by the sequence A190052 .
EXAMPLE
a(11) = 271 because A190052(11) = 7859 =29 * 271 , and 271 is the largest prime
divisor such that 271 - 29 = 242 = 2*11^2.
MAPLE
with(numtheory):for m from 1 to 60 do: k:=2*m^2:id:=0:for n from 1 to 100000
while(id=0) do: x:=factorset(n):n1:=nops(x):n2:=bigomega(n):if n1=2 and n2=2
and x[2]=x[1]+k then id:=1:printf(`%d, `, x[2]):else fi:od:od:
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Michel Lagneau, May 05 2011
STATUS
approved