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.

A296243 Numbers k such that the multiplicative order of 2 modulo k is even.

Original entry on oeis.org

3, 5, 9, 11, 13, 15, 17, 19, 21, 25, 27, 29, 33, 35, 37, 39, 41, 43, 45, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 75, 77, 81, 83, 85, 87, 91, 93, 95, 97, 99, 101, 105, 107, 109, 111, 113, 115, 117, 119, 121, 123, 125, 129, 131, 133, 135, 137, 139, 141, 143, 145, 147, 149, 153
Offset: 1

Views

Author

Max Alekseyev, Dec 09 2017

Keywords

Comments

Odd numbers k such that A007733(k) = A002326((k-1)/2) is even.

Crossrefs

Set difference of A005408 and A036259.
Contains A296244 as a subsequence.
The prime terms are given by A014662.

Programs

  • Mathematica
    A036259 = Select[Range[1, 199, 2], OddQ[MultiplicativeOrder[2, #]] &];
    Range[1, A036259[[-1]], 2] ~Complement~ A036259 (* Jean-François Alcover, Dec 20 2017 *)
    Select[Range[1, 153, 2], EvenQ[MultiplicativeOrder[2, #]] &] (* Amiram Eldar, Jul 30 2020 *)
  • PARI
    { is_A296243(n) = (n%2) && !(znorder(Mod(2,n))%2); }