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.

A317886 Numbers m such that 11^m + 6 is prime.

Original entry on oeis.org

0, 1, 2, 25, 26, 70, 130, 784, 818, 895, 7843, 41294, 114458, 160663, 281143
Offset: 1

Views

Author

Jinyuan Wang, Aug 09 2018

Keywords

Comments

a(12) > 35000, if it exists. - Giovanni Resta, Aug 10 2018
For m = 3*k, (11^m + 6)/7 is an integer, so there are no multiples of 3 in this sequence.
After a(2), there are no terms congruent to 1 mod 16, because 11^(16*k+1) + 6 is divisible by 17. - Bruno Berselli, Sep 20 2018

Examples

			11^2 + 6 = 127 is prime, hence 2 is a term.
		

Crossrefs

Cf. A109076.

Programs

  • Mathematica
    Select[Range[0, 5000], PrimeQ[11^# + 6] &]
  • PARI
    for(n=0, 5000, if(ispseudoprime(11^n+6), print1(n, ", ")))

Extensions

a(11) from Giovanni Resta, Aug 10 2018
a(12) from Lelio R Paula, Feb 02 2021
a(13)-a(14) from Paul Bourdelais, Feb 26 2021
a(15) from Paul Bourdelais, Mar 03 2021