OFFSET
1,1
COMMENTS
It is conjectured that this sequence is increasing, but this has never been proved.
It is easily shown that all terms greater than 5 end in 1 or 7.
REFERENCES
G. H. Hardy and E. M. Wright, An Introduction to the Theory of Numbers, 5th ed., Oxford Univ. Press, 1979, th. 17.
P. Ribenboim, The Little Book of Big Primes. Springer-Verlag, 1991, p. 190.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..1000
Eric Weisstein's World of Mathematics, Landau's Problems.
PROG
(PARI) a(n) = my(last = 2^n+1); while ((p = precprime(last-1)) && (! issquare(p-1)), last = p; ); p \\ Michel Marcus, Jun 14 2013
(PARI) a(n)=my(k=sqrtint(2^n-1)); while(!isprime(k^2+1), k--); k^2+1 \\ Charles R Greathouse IV, Nov 29 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Harry J. Smith, May 05 2003
STATUS
approved