OFFSET
1,1
COMMENTS
See A259238 for the corresponding bases.
LINKS
Tim Johannes Ohrtmann, Table of n, a(n) for n = 1..14688
EXAMPLE
a(1) = 35 because this is the first squarefree composite number n such that exactly one nonzero integer b exists such that for every prime factor p of n, p+b divides n+b (-3): 35=5*7 and 2, 4 both divide 32.
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==1, print1(n, ", ")))))
CROSSREFS
KEYWORD
nonn
AUTHOR
Tim Johannes Ohrtmann, May 07 2015
STATUS
approved