The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A279191 Primes p such that L(p^2) = (p-1)*L(p)/4, where L(i) = A279186(i). 2
53, 61, 97, 113, 149, 193, 349, 389, 461, 769, 773, 857, 941 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Haifeng Xu, The largest cycles consist by the quadratic residues and Fermat primes, arXiv:1601.06509 [math.NT], 2016.
MATHEMATICA
T[n_, k_] := Module[{g, y, r}, If[k == 0, Return[1]]; y = n; g = GCD[k, y]; While[g > 1, y = y/g; g = GCD[k, y]]; If[y == 1, Return[1]]; r = MultiplicativeOrder[k, y]; r = r/2^IntegerExponent[r, 2]; If[r == 1, Return[1]]; MultiplicativeOrder[2, r]];
L[n_] := L[n] = Table[T[n, k], {k, 0, n - 1}] // Max;
For[p = 2, p < 1000, p = NextPrime[p], If[L[p^2] == (p-1) L[p]/4, Print[p]]] (* Jean-François Alcover, Oct 07 2018, after Robert Israel in A279186 *)
CROSSREFS
Sequence in context: A079593 A086082 A126665 * A107160 A075587 A102635
KEYWORD
nonn,more
AUTHOR
N. J. A. Sloane, Dec 14 2016
EXTENSIONS
a(8)-a(13) from Jean-François Alcover, Oct 07 2018
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 June 7 14:59 EDT 2024. Contains 373202 sequences. (Running on oeis4.)