login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A219586 Greatest prime factor of Product_{x=1..n} (x^2 + 1). 0
2, 5, 5, 17, 17, 37, 37, 37, 41, 101, 101, 101, 101, 197, 197, 257, 257, 257, 257, 401, 401, 401, 401, 577, 577, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 1297, 1297, 1297, 1297, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
C. Hooley, On the greatest prime factor of a quadratic polynomial, Acta Mathematica July 1967, Volume 117, Issue 1, pp 281-299.
MAPLE
a:= proc(n) option remember; `if`(n=0, 0,
max(a(n-1), numtheory[factorset](n^2+1)[]))
end:
seq(a(n), n=1..55); # Alois P. Heinz, Jan 03 2021
MATHEMATICA
a[n_] := a[n] = If[n == 1, 2, Max[a[n-1], FactorInteger[n^2+1][[-1, 1]]]];
Table[a[n], {n, 1, 55}] (* Jean-François Alcover, May 14 2022, after Alois P. Heinz *)
PROG
(PARI) a(m) = {for (n=1, m, f = factor(prod(x=1, n, x^2+1)); print1(f[length(f~), 1], ", "); ); }
CROSSREFS
Sequence in context: A281793 A259036 A081235 * A082534 A165659 A154816
KEYWORD
nonn
AUTHOR
Michel Marcus, Nov 23 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 03:08 EDT 2024. Contains 371918 sequences. (Running on oeis4.)