editing
approved
editing
approved
Description and initial term modified Jan 15 1996.
approved
editing
reviewed
approved
proposed
reviewed
editing
proposed
Arc-cotangent reducible numbers or non-Størmer numbers: largest prime factor of nk^2 + 1 is less than 2n2*k.
Also numbers such that nk^2 + 1 has no primitive divisor, hence (by Everest & Harman, Theorem 1.4) 2.138n < a(n) < 10.6n for large enough n. They conjecture that a(n) ~ cn where c = 1/(1 - log 2) = 3.258.... - Charles R Greathouse IV, Nov 15 2014
(Python)
from sympy import factorint
def ok(n): return max(factorint(n*n + 1)) < 2*n
print(list(filter(ok, range(1, 201)))) # Michael S. Branicky, Aug 30 2021
approved
editing
reviewed
approved
proposed
reviewed
editing
proposed
Olga Taussky, <a href="https://doi.org/10.2307/2317016">Sums of Squares</a>, The American Mathematical Monthly, Vol. 77, No. 8 (Oct., 1970), pp. 805-830 (26 pages). See p. 823.
approved
editing