OFFSET
1,6
COMMENTS
A sequence that produces primes.
A counterexample is found at n=7880, here the gcd is 380927609 = 15761*24169.
Interesting properties may be found in this sequence, for example many primes are 2n+1.
MATHEMATICA
Table[GCD[(n!)^2+1, DivisorSigma[1, n!]], {n, 90}] (* Harvey P. Dale, Jun 03 2021 *)
PROG
(PARI) a(n) = gcd(n!^2+1, sigma(n!)); \\ Michel Marcus, Feb 20 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Daoudi RĂ©doane, Feb 20 2019
EXTENSIONS
More terms from Michel Marcus, Feb 20 2019
STATUS
approved