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”).

A301346
Largest prime factor of A020549(n) = (n!)^2 + 1.
1
2, 2, 5, 37, 577, 14401, 39877, 251501, 95629553, 131681894401, 13168189440001, 1593350922240001, 2271708245569901, 38775788043632640001, 2404319663572286441, 1272170577304043929, 2938007628841577533852349, 13980942259426143240713449, 1107848353183710355135404972973, 20831587158104092560535861261
OFFSET
0,1
COMMENTS
a(n) = A020549(n) for n in A046029.
LINKS
FORMULA
a(n) = A006530(A020549(n)). - Altug Alkan, Mar 19 2018
MAPLE
a:= n-> max(numtheory[factorset](n!^2+1)):
seq(a(n), n=0..20); # Alois P. Heinz, Mar 19 2018
PROG
(PARI) a(n) = vecmax(factor(n!^2 + 1)[, 1]); \\ Daniel Suteu, Jun 10 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 19 2018
STATUS
approved