[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A337848
Odd integers k>=5 such that 2^((k-1)/2)-1 == 0 (mod k*(k-3)/2).
1
73, 241, 2593, 5113, 8713, 18433, 53593, 55681, 86113, 102241, 126337, 127873, 158113, 181721, 184369, 186049, 208393, 219313, 221537, 241921, 262657, 267913, 282313, 314161, 314401, 341641, 362521, 398441, 415873, 450913, 534241, 619921, 651169, 731881, 953473, 1045801, 1153441, 1294177, 1554281, 2023921, 2162401, 2345401, 2533681
OFFSET
1,1
COMMENTS
Computed terms are prime. Is it always the case? If not it would be interesting to compute the pseudoprimes.
1234125721 = 24841*49681, 4294901761 = 193*22253377, 6602556241 = 57457*114913 are composite counterexamples to the assumption that all terms are prime. - Hugo Pfoertner, Sep 26 2020
These are a(420), a(705) and a(830). Together with a(956) = 10025492401 = 101 * 701 * 141601 they are the first 4 composite terms. - Amiram Eldar, Jun 17 2022
LINKS
MATHEMATICA
Select[Range[5, 10^6, 2], PowerMod[2, (# - 1)/2, #*(# - 3)/2] == 1 &] (* Amiram Eldar, Sep 26 2020 *)
PROG
(PARI) is(n) = n%2 && n>=3 && Mod(2, n*(n-3)/2)^((n-1)/2) ==1
CROSSREFS
Cf. A337818.
Sequence in context: A158711 A140039 A201715 * A071392 A305473 A142434
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Sep 26 2020
STATUS
approved