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.

A297348 Numbers k such that 12*13^k - 1 is prime.

Original entry on oeis.org

0, 2, 7, 11, 36, 164, 216, 302, 311, 455, 738, 1107, 2244, 3326, 4878, 8067, 46466
Offset: 1

Views

Author

Tim Johannes Ohrtmann, Feb 15 2018

Keywords

Comments

Williams primes to base 12.

Crossrefs

Programs

  • Magma
    [n: n in [0..10000] |IsPrime(12*13^n-1)];
  • Mathematica
    Select[Range[0, 10000], PrimeQ[12*13^n-1] &]
  • PARI
    for(n=0, 10000, if(isprime(12*13^n-1), print1(n, ", ")))
    

Extensions

a(16) from Michael S. Branicky, Sep 14 2022
a(17) from Michael S. Branicky, Nov 12 2024