OFFSET
1,1
EXAMPLE
a(1) = 34933 because this is the first squarefree composite number n such that exactly five integers except 0 exist such that for every prime factor p of n applies that p+b divides n+b (-178, -175, -173, -157, -133): 34933=181*193 and 3, 15 both divide 34755 and 6, 18 both divide 34758 and 18, 20 both divide 34760 and 24, 36 both divide 34776 and 48, 60 both divide 34800.
PROG
(PARI) for(n=2, 1000000, if(!isprime(n), if(issquarefree(n), f=factor(n); k=0; for(b=-(f[1, 1]-1), n, c=0; for(i=1, #f[, 1], if((n+b)%(f[i, 1]+b)>0, c++)); if(c==0, if(!b==0, k++))); if(k==5, print1(n, ", ")))))
KEYWORD
nonn
AUTHOR
Tim Johannes Ohrtmann, May 12 2015
STATUS
approved