-module(t). -export([m/0]). m()->L=lists:seq(3,2000,2),[io:format("~p,~p ",[X,X+2])||X<-L,[Y||Y<-L,X>Y,X*(X+2)rem Y<1]==[]].