OFFSET
1,1
COMMENTS
If 6*n+1 is prime, a(n) = 6*n+1.
MATHEMATICA
A107744[n_]:= FactorInteger[6 n + 1][[1, 1]]
PROG
(PARI) vector(100, n, vecmin(factor(6*n+1)[, 1])) \\ Altug Alkan, Oct 23 2015
(Magma) [Min(PrimeFactors(6*n+1)):n in[1..68]]; // Jason Kimberley, Oct 28 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, May 23 2005
EXTENSIONS
Comments corrected and (at the suggestion of Michel Marcus) moved to Crossrefs by Jason Kimberley, Oct 23 2015
STATUS
approved