OFFSET
1,1
COMMENTS
From David A. Corneth, Sep 11 2019: (Start)
Are there any terms > 941747621709311?
As k^2 - 1 = (k - 1)(k + 1), a(n) is of the form 101*m +- 1. (End)
LINKS
David A. Corneth, Table of n, a(n) for n = 1..3340 (first 2325 terms from Klaus Brockhaus, terms < 10^17).
Florian Luca, Filip Najman, On the largest prime factor of x^2-1, arXiv:1005.1533 [math.NT], 2010.
Florian Luca, Filip Najman, On the largest prime factor of x^2-1, Mathematics of Computation 80 (2011), 429-435. (Paper has errata that was posted on the MOC website.)
MATHEMATICA
Select[Range[4746], FactorInteger[#^2-1][[-1, 1]]==101&] (* Metin Sariyar, Sep 15 2019 *)
PROG
(Magma) [ n: n in [2..5000] | m eq 101 where m is D[#D] where D is PrimeDivisors(n^2-1) ];
(PARI) is(n)=n=n^2-1; forprime(p=2, 97, n/=p^valuation(n, p)); n>1 && 101^valuation(n, 101)==n \\ Charles R Greathouse IV, Jul 01 2013
CROSSREFS
KEYWORD
fini,nonn
AUTHOR
Klaus Brockhaus, Oct 31 2010
STATUS
approved