login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A209188
Smallest prime factor of n^2 + n - 1.
1
5, 11, 19, 29, 41, 5, 71, 89, 109, 131, 5, 181, 11, 239, 271, 5, 11, 379, 419, 461, 5, 19, 599, 11, 701, 5, 811, 11, 929, 991, 5, 19, 29, 1259, 11, 5, 1481, 1559, 11, 1721, 5, 31, 1979, 2069, 2161, 5, 2351, 31, 2549
OFFSET
2,1
MATHEMATICA
SPF[n_] := (FactorInteger[n])[[1]][[1]]; Flatten[Table[SPF[n^2 + (n - 1)], {n, 2, 50}]]
Table[FactorInteger[n^2+n-1][[1, 1]], {n, 2, 50}] (* Harvey P. Dale, Aug 20 2014 *)
PROG
(Magma) [Min(PrimeFactors(n^2+n-1)):n in[2..70]]; // Vincenzo Librandi, Sep 18 2016
(PARI) a(n) = vecmin(factor(n^2+n-1)[, 1]); \\ Michel Marcus, Sep 18 2016
CROSSREFS
Cf. A071182.
Sequence in context: A130828 A244241 A108151 * A356247 A215886 A088059
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Mar 05 2012
STATUS
approved