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.

A294135 Sorted list of prime factors of numbers of the form 9^(2^m) + 2^(2^m) with m >= 0.

Original entry on oeis.org

5, 11, 17, 257, 449, 1601, 6577, 20353, 25601, 40961, 65537, 95873, 163841, 176129, 1179649, 8452097, 13631489, 26419201, 32310529, 38031361, 56867009, 59637761, 144310273, 480865793, 697434113, 1572864001, 2013265921, 7547650049, 62872289281, 483049603073
Offset: 1

Views

Author

Arkadiusz Wesolowski, Oct 23 2017

Keywords

Comments

Primes p other than 7 such that the multiplicative order of 9/2 (mod p) is a power of 2.

Crossrefs

Programs

  • PARI
    print1(5, ", "11, ", "); forprime(p=17, 483049603073, z=znorder(Mod(9/2, p)); if(2^ispower(z)==z, print1(p, ", ")));