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

A217852
Multiplicative order of 5 (mod 5*n - 1).
3
1, 6, 6, 9, 2, 14, 16, 4, 5, 42, 18, 29, 16, 22, 36, 39, 6, 44, 46, 30, 4, 27, 18, 48, 3, 42, 22, 69, 12, 37, 30, 52, 20, 52, 14, 89, 22, 18, 96, 33, 16, 45, 106, 72, 24, 114, 12, 119, 30, 82, 42, 36, 10, 67, 136, 6, 5, 272, 42, 44, 36, 102, 156, 70, 54, 138, 166
OFFSET
1,2
COMMENTS
Least m such that 5*n - 1 divides 5^m - 1.
LINKS
Arkadiusz Wesolowski, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Multiplicative Order
MATHEMATICA
Table[MultiplicativeOrder[5, 5*n - 1], {n, 67}]
PROG
(PARI) vector(80, n, znorder(Mod(5, 5*n-1))) \\ Michel Marcus, Feb 09 2015
(GAP) List([1..70], n->OrderMod(5, 5*n-1)); # Muniru A Asiru, Feb 25 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved