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

A050975
Haupt-exponents of 3 modulo integers relatively prime to 3.
4
1, 2, 4, 6, 2, 4, 5, 3, 6, 4, 16, 18, 4, 5, 11, 20, 3, 6, 28, 30, 8, 16, 12, 18, 18, 4, 8, 42, 10, 11, 23, 42, 20, 6, 52, 20, 6, 28, 29, 10, 30, 16, 12, 22, 16, 12, 35, 12, 18, 18, 30, 78, 4, 8, 41, 16, 42, 10, 88, 6, 22, 23, 36, 48, 42, 20, 100, 34, 6, 52, 53, 27, 20, 12
OFFSET
1,2
LINKS
Eric Weisstein's World of Mathematics, Multiplicative Order
MAPLE
A001651 := proc(n)
(3*(2*n-1)-(-1)^n)/4 ;
end proc:
A050975 := proc(n)
local gcd3 ;
gcd3 := A001651(n+1);
numtheory[order](3, gcd3) ;
end proc: # R. J. Mathar, Oct 21 2012
CROSSREFS
KEYWORD
nonn
STATUS
approved