OFFSET
1,2
COMMENTS
Question: does this sequence contain infinitely many composite numbers?
Nonprimes in the sequence are 1, 9, 25, 121, 1369,... (no more up to at least 100000). [R. J. Mathar, Jul 14 2010]
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
MATHEMATICA
a[n_] := MultiplicativeOrder[2, 2 n + 1]; s = {}; am = 0; Do[a1 = a[n]; If[a1 > am, am = a1; AppendTo[s, 2 n + 1]], {n, 0, 360}]; s (* Amiram Eldar, Sep 12 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Jun 05 2008
EXTENSIONS
More terms from R. J. Mathar, Jul 14 2010
STATUS
approved