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”).

A240664
Least k such that 9^k == -1 (mod prime(n)), or 0 if no such k exists.
1
1, 0, 1, 0, 0, 0, 4, 0, 0, 7, 0, 0, 2, 0, 0, 13, 0, 0, 0, 0, 3, 0, 0, 22, 12, 25, 0, 0, 0, 28, 0, 0, 34, 0, 37, 0, 0, 0, 0, 43, 0, 0, 0, 4, 49, 0, 0, 0, 0, 0, 58, 0, 30, 0, 64, 0, 67, 0, 0, 70, 0, 73, 0, 0, 0, 79, 0, 42, 0, 0, 88, 0, 0, 0, 0, 0, 97, 0, 100, 51, 0
OFFSET
1,7
COMMENTS
The least k, if it exists, such that prime(n) divides 9^k + 1.
FORMULA
a(1) = 1; for n > 1, a(n) = A211245(n)/2 if A211245(n) is even, otherwise 0.
MATHEMATICA
Table[p = Prime[n]; s = Select[Range[p/2], PowerMod[9, #, p] == p - 1 &, 1]; If[s == {}, 0, s[[1]]], {n, 100}]
CROSSREFS
Cf. A211245 (order of 9 mod prime(n)).
Sequence in context: A063730 A355945 A131431 * A255328 A321433 A016678
KEYWORD
nonn
AUTHOR
T. D. Noe, Apr 14 2014
STATUS
approved