OFFSET
2,1
EXAMPLE
10 has prime factors 2 and 5, which become 3 and 6 when respectively increased by 1, and gcd(3, 6) = 3. Therefore, a(10) = 3.
MATHEMATICA
Table[Apply[GCD, (Transpose[FactorInteger[n]][[1]] + 1)], {n, 2, 100}]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Joseph L. Pe, Feb 18 2014
STATUS
approved