cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A050975 Haupt-exponents of 3 modulo integers relatively prime to 3.

Original entry on oeis.org

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

Views

Author

Keywords

Crossrefs

Programs

  • 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