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.

Showing 1-2 of 2 results.

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

Original entry on oeis.org

3, 17, 53, 97, 257, 449, 2417, 7681, 8513, 65537, 89633, 114689, 339121, 876097, 1321729, 1454081, 2572289, 4638721, 5463041, 7340033, 27688961, 47047681, 62177153, 93847553, 113418241, 374734849, 3731619841, 13037142017, 13555990529, 13951408129, 142807662593
Offset: 1

Views

Author

Arkadiusz Wesolowski, Oct 23 2017

Keywords

Comments

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

Crossrefs

Programs

  • PARI
    print1(3, ", "); forprime(p=17, 142807662593, z=znorder(Mod(7/2, p)); if(2^ispower(z)==z, print1(p, ", ")));

A386618 Primes of the form 2^k + 13^k.

Original entry on oeis.org

2, 173, 815730977
Offset: 1

Views

Author

Vincenzo Librandi, Aug 17 2025

Keywords

Comments

If 13^k + 2^k is prime then k is either 0 or a power of 2. The corresponding values of k for a(1)-a(4) are 0, 2, 8 and 512. The fourth value is too long to enter.

Crossrefs

Programs

  • Magma
    [a: n in [0..200] | IsPrime(a) where a is 13^n+2^n ];
  • Mathematica
    Select[Table[2^n+13^n,{n,0,600}],PrimeQ]
Showing 1-2 of 2 results.