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

A333506
Numbers k that divide 19^k-1.
2
1, 2, 3, 4, 6, 8, 9, 10, 12, 16, 18, 20, 24, 27, 30, 32, 36, 40, 42, 48, 50, 54, 60, 64, 72, 80, 81, 84, 90, 96, 100, 108, 110, 120, 126, 128, 136, 144, 150, 156, 160, 162, 168, 180, 192, 200, 210, 216, 220, 240, 243, 250, 252, 256, 270, 272, 288, 294, 300, 312, 320, 324, 330, 336
OFFSET
1,2
LINKS
MATHEMATICA
Join[{1}, Select[Range[2, 336], PowerMod[19, #, #] == 1 &]] (* Amiram Eldar, May 05 2021 *)
PROG
(PARI) for(k=1, 1e3, if(Mod(19, k)^k==1, print1(k", ")))
CROSSREFS
Columns k=19 of A333432.
Sequence in context: A067023 A227762 A344296 * A303492 A188591 A002183
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 25 2020
STATUS
approved